Skip to content

Commit

Permalink
Auto-update dependencies (#1364)
Browse files Browse the repository at this point in the history
* Auto-update dependencies.

* add exported attribute to activities with intent-filter

* remove app-indexing from gradle modules

* enable multidex for storage quickstart

Co-authored-by: DPE bot <[email protected]>
  • Loading branch information
thatfiredev and dpebot committed Apr 21, 2022
1 parent f09bc36 commit 15b1807
Show file tree
Hide file tree
Showing 47 changed files with 170 additions and 152 deletions.
16 changes: 8 additions & 8 deletions admob/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 7,12 @@ plugins {
check.dependsOn 'assembleDebugAndroidTest'

android {
compileSdkVersion 30
compileSdkVersion 32

defaultConfig {
applicationId "com.google.samples.quickstart.admobexample"
minSdkVersion 18
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"
multiDexEnabled true
Expand Down Expand Up @@ -41,13 41,13 @@ android {
dependencies {
implementation project(":internal:lintchecks")
implementation project(":internal:chooserx")
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.browser:browser:1.0.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'

implementation 'com.google.android.gms:play-services-ads:20.2.0'
implementation 'com.google.android.gms:play-services-ads:20.6.0'

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:28.3.0')
Expand All @@ -56,7 56,7 @@ dependencies {
// for Google Analytics. This is recommended, but not required.
implementation 'com.google.firebase:firebase-analytics'

debugImplementation "androidx.fragment:fragment-testing:1.3.6"
debugImplementation "androidx.fragment:fragment-testing:1.4.1"
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test:rules:1.4.0'
androidTestImplementation 'androidx.test:runner:1.4.0'
Expand Down
3 changes: 2 additions & 1 deletion admob/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 26,8 @@

<activity
android:name=".EntryChoiceActivity"
android:label="@string/app_name">
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
4 changes: 2 additions & 2 deletions admob/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 8,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
}
}

Expand Down
10 changes: 5 additions & 5 deletions analytics/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 7,12 @@ plugins {
check.dependsOn 'assembleDebugAndroidTest'

android {
compileSdkVersion 30
compileSdkVersion 32

defaultConfig {
applicationId "com.google.firebase.quickstart.analytics"
minSdkVersion 18
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand All @@ -34,9 34,9 @@ dependencies {
implementation project(":internal:lintchecks")
implementation project(":internal:chooserx")

implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation "androidx.preference:preference-ktx:1.1.1"
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation "androidx.preference:preference-ktx:1.2.0"

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:28.3.0')
Expand Down
3 changes: 2 additions & 1 deletion analytics/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 16,8 @@

<activity
android:name="com.google.firebase.quickstart.analytics.EntryChoiceActivity"
android:label="@string/app_name">
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

Expand Down
4 changes: 2 additions & 2 deletions analytics/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 8,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
}
}

Expand Down
10 changes: 5 additions & 5 deletions appdistribution/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 5,11 @@ plugins {
}

android {
compileSdkVersion 30
compileSdkVersion 32
defaultConfig {
applicationId "com.google.firebase.appdistributionquickstart"
minSdkVersion 19
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"

Expand Down Expand Up @@ -37,12 37,12 @@ dependencies {
implementation project(":internal:lintchecks")
implementation project(":internal:chooserx")

implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.multidex:multidex:2.0.1'

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:29.0.0')
implementation platform('com.google.firebase:firebase-bom:29.3.1')

// ADD the SDK to the "prerelease" variant only (example)
implementation 'com.google.firebase:firebase-appdistribution-ktx:16.0.0-beta01'
Expand Down
3 changes: 2 additions & 1 deletion appdistribution/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 22,8 @@
android:theme="@style/AppTheme">
</activity>

<activity android:name=".EntryChoiceActivity">
<activity android:name=".EntryChoiceActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
4 changes: 2 additions & 2 deletions appdistribution/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 8,9 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.google.gms:google-services:4.3.8'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
}
}

Expand Down
18 changes: 9 additions & 9 deletions auth/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 7,13 @@ plugins {
check.dependsOn 'assembleDebugAndroidTest'

android {
compileSdkVersion 30
compileSdkVersion 32
flavorDimensions "minSdkVersion"

defaultConfig {
applicationId "com.google.firebase.quickstart.auth"
minSdkVersion 18
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"
multiDexEnabled true
Expand Down Expand Up @@ -42,12 42,12 @@ dependencies {
implementation project(':internal:lintchecks')
implementation 'androidx.multidex:multidex:2.0.1'

implementation 'androidx.activity:activity-ktx:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
implementation 'androidx.activity:activity-ktx:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:28.3.0')
Expand All @@ -59,11 59,11 @@ dependencies {
implementation 'com.google.firebase:firebase-auth-ktx'

// Google Sign In SDK (only required for Google Sign In)
implementation 'com.google.android.gms:play-services-auth:19.2.0'
implementation 'com.google.android.gms:play-services-auth:20.1.0'

// Firebase UI
// Used in FirebaseUIActivity.
implementation 'com.firebaseui:firebase-ui-auth:8.0.0'
implementation 'com.firebaseui:firebase-ui-auth:8.0.1'

// Facebook Android SDK (only required for Facebook Login)
// Used in FacebookLoginActivity.
Expand Down
9 changes: 6 additions & 3 deletions auth/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 12,8 @@
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".EntryChoiceActivity">
<activity android:name=".EntryChoiceActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand All @@ -26,7 27,8 @@
<activity
android:name=".java.PasswordlessActivity"
android:label="@string/label_passwordless"
android:launchMode="singleTop">
android:launchMode="singleTop"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data
Expand All @@ -40,7 42,8 @@
<activity
android:name=".kotlin.PasswordlessActivity"
android:label="@string/label_passwordless"
android:launchMode="singleTop">
android:launchMode="singleTop"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data
Expand Down
4 changes: 2 additions & 2 deletions auth/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 8,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
}
}

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 5,13 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'com.android.tools.build:gradle:7.1.3'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'

classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.firebase:perf-plugin:1.4.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.4.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
classpath 'androidx.navigation:navigation-safe-args-gradle-plugin:2.4.2'
}
}

Expand Down
6 changes: 3 additions & 3 deletions config/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 7,12 @@ plugins {
check.dependsOn 'assembleDebugAndroidTest'

android {
compileSdkVersion 30
compileSdkVersion 32

defaultConfig {
applicationId "com.google.samples.quickstart.config"
minSdkVersion 18
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"

Expand All @@ -35,7 35,7 @@ dependencies {
implementation project(":internal:lintchecks")
implementation project(":internal:chooserx")

implementation 'com.google.android.material:material:1.4.0'
implementation 'com.google.android.material:material:1.5.0'

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:28.3.0')
Expand Down
3 changes: 2 additions & 1 deletion config/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 18,8 @@

<activity
android:name=".EntryChoiceActivity"
android:label="@string/app_name" >
android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
4 changes: 2 additions & 2 deletions config/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 8,8 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
}
}

Expand Down
10 changes: 5 additions & 5 deletions crash/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 8,12 @@ plugins {
check.dependsOn 'assembleDebugAndroidTest'

android {
compileSdkVersion 30
compileSdkVersion 32

defaultConfig {
applicationId "com.google.samples.quickstart.crash"
minSdkVersion 18
targetSdkVersion 30
targetSdkVersion 32
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
Expand All @@ -39,8 39,8 @@ android {
dependencies {
implementation project(":internal:lintchecks")
implementation project(":internal:chooserx")
implementation 'com.google.android.material:material:1.4.0'
implementation "androidx.activity:activity-ktx:1.3.0"
implementation 'com.google.android.material:material:1.5.0'
implementation "androidx.activity:activity-ktx:1.4.0"

// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation platform('com.google.firebase:firebase-bom:28.3.0')
Expand All @@ -53,7 53,7 @@ dependencies {
implementation 'com.google.firebase:firebase-analytics'

// For use in the CustomKeySamples -- for testing Google Api Availability.
implementation 'com.google.android.gms:play-services-base:17.6.0'
implementation 'com.google.android.gms:play-services-base:18.0.1'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
Expand Down
3 changes: 2 additions & 1 deletion crash/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 21,8 @@ specific language governing permissions and limitations under the License.
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".EntryChoiceActivity">
<activity android:name=".EntryChoiceActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
6 changes: 3 additions & 3 deletions crash/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 8,9 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.0'
classpath 'com.google.gms:google-services:4.3.8'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21'
classpath 'com.google.gms:google-services:4.3.10'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21'
}
}

Expand Down
Loading

0 comments on commit 15b1807

Please sign in to comment.