Skip to content

Commit b732476

Browse files
committed
Version update.
Update to: - AGP 7.3.0-beta01 - compileSdk 32 - targetSdk 32 - build tools 32 - androidx (not test) to latest stable
1 parent 1c17d9a commit b732476

File tree

52 files changed

+133
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+133
-117
lines changed

integration/ServiceTestRuleSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 30
4+
compileSdkVersion 32
55
buildToolsVersion rootProject.buildToolsVersion
66
defaultConfig {
77
applicationId "com.example.android.testing.integrationtesting.ServiceTestRuleSample"
88
minSdkVersion 14
9-
targetSdkVersion 30
9+
targetSdkVersion 32
1010
versionCode 1
1111
versionName "1.0"
1212

integration/ServiceTestRuleSample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = "7.3.0-alpha07"
4+
ext.agpVersion = "7.3.0-beta01"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -24,7 +24,7 @@ allprojects {
2424
}
2525

2626
ext {
27-
buildToolsVersion = "31.0.0"
27+
buildToolsVersion = "32.0.0"
2828
coreVersion = "1.4.1-alpha07"
2929
extJUnitVersion = "1.1.4-alpha07"
3030
runnerVersion = "1.5.0-alpha04"

runner/AndroidJunitRunnerSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
22

33

44
android {
5-
compileSdkVersion 30
5+
compileSdkVersion 32
66
buildToolsVersion rootProject.buildToolsVersion
77
defaultConfig {
88
applicationId "com.example.android.testing.androidjunitrunnersample"
99
minSdkVersion 14
10-
targetSdkVersion 30
10+
targetSdkVersion 32
1111
versionCode 1
1212
versionName "1.0"
1313

runner/AndroidJunitRunnerSample/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
android:theme="@style/AppTheme" >
2525
<activity
2626
android:name=".CalculatorActivity"
27-
android:label="@string/app_name" >
27+
android:label="@string/app_name"
28+
android:exported="true">
2829
<intent-filter>
2930
<action android:name="android.intent.action.MAIN" />
3031

runner/AndroidJunitRunnerSample/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = "7.3.0-alpha07"
4+
ext.agpVersion = "7.3.0-beta01"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -24,8 +24,8 @@ allprojects {
2424
}
2525

2626
ext {
27-
buildToolsVersion = "31.0.0"
28-
androidxAnnotationVersion = "1.2.0"
27+
buildToolsVersion = "32.0.0"
28+
androidxAnnotationVersion = "1.3.0"
2929
guavaVersion = "30.1.1-android"
3030
coreVersion = "1.4.1-alpha07"
3131
extJUnitVersion = "1.1.4-alpha07"

runner/AndroidTestOrchestratorSample/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 30
4+
compileSdkVersion 32
55
buildToolsVersion rootProject.buildToolsVersion
66
defaultConfig {
77
applicationId "com.example.android.testing.androidtestorchestratorsample"
88
minSdkVersion 14
9-
targetSdkVersion 30
9+
targetSdkVersion 32
1010
versionCode 1
1111
versionName "1.0"
1212

runner/AndroidTestOrchestratorSample/app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
android:theme="@style/AppTheme" >
2525
<activity
2626
android:name=".CalculatorActivity"
27-
android:label="@string/app_name" >
27+
android:label="@string/app_name"
28+
android:exported="true">
2829
<intent-filter>
2930
<action android:name="android.intent.action.MAIN" />
3031

runner/AndroidTestOrchestratorSample/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = "7.3.0-alpha07"
4+
ext.agpVersion = "7.3.0-beta01"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -24,8 +24,8 @@ allprojects {
2424
}
2525

2626
ext {
27-
buildToolsVersion = "31.0.0"
28-
androidxAnnotationVersion = "1.2.0"
27+
buildToolsVersion = "32.0.0"
28+
androidxAnnotationVersion = "1.3.0"
2929
guavaVersion = "30.1.1-android"
3030
coreVersion = "1.4.1-alpha07"
3131
extJUnitVersion = "1.1.4-alpha07"

runner/AndroidTestOrchestratorWithTestCoverageSample/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.agpVersion = '7.1.1'
4+
ext.agpVersion = "7.3.0-beta01"
55
repositories {
66
// Insert local test repo here
77
google()
@@ -32,6 +32,7 @@ ext {
3232
runnerVersion = "1.4.1-alpha03"
3333
rulesVersion = "1.4.1-alpha03"
3434
testServicesVersion = "1.4.1-alpha03"
35+
orchestratorVersion = "1.4.1-alpha03"
3536
espressoVersion = "3.5.0-alpha03"
3637
truthVersion = "1.1.3"
3738
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Thu Oct 14 15:41:28 PDT 2021
1+
#Wed Jun 01 11:09:45 PDT 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)