Skip to content

Commit

Permalink
refactor: apply suggestions from Android Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
seguri committed Jan 6, 2023
1 parent be49027 commit 5020a44
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
1 change: 1 addition & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
namespace 'com.example.android.uamp'
}

dependencies {
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:dist="http://schemas.android.com/apk/distribution"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.android.uamp">
xmlns:tools="http://schemas.android.com/tools">

<application
android:allowBackup="true"
Expand Down
1 change: 1 addition & 0 deletions automotive/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
namespace 'com.example.android.uamp.automotive'

}

Expand Down
3 changes: 1 addition & 2 deletions automotive/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.android.uamp.automotive">
xmlns:tools="http://schemas.android.com/tools">

<!--
Since this module contains code exclusive to Android Automotive, require the feature here.
Expand Down
4 changes: 1 addition & 3 deletions common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ android {
compileSdkVersion rootProject.compileSdkVersion

defaultConfig {
versionCode 1
versionName "1.0"

minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion

Expand All @@ -42,6 +39,7 @@ android {
compileOptions {
targetCompatibility = '1.8'
}
namespace 'com.example.android.uamp.media'

}

Expand Down
3 changes: 1 addition & 2 deletions common/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
~ limitations under the License.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.uamp.media">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down

0 comments on commit 5020a44

Please sign in to comment.