Skip to content

Commit a8a5d86

Browse files
authored
chore: Upgrade to CompileSDK 34 (#2893)
1 parent 502bbd1 commit a8a5d86

File tree

75 files changed

+215
-188
lines changed

Some content is hidden

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

75 files changed

+215
-188
lines changed

.github/workflows/codecov_code_coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Java
3030
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3
3131
with:
32-
java-version: '11'
32+
java-version: '17'
3333
distribution: 'corretto'
3434

3535
- name: Run test and generate kover report

annotations/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ apply(from = rootProject.file("configuration/publishing.gradle"))
2424
group = properties["POM_GROUP"].toString()
2525

2626
android {
27+
namespace = "com.amplifyframework.annotations"
2728
kotlinOptions {
2829
moduleName = "com.amplifyframework.annotations"
2930
}

annotations/src/main/AndroidManifest.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,4 @@
1414
permissions and limitations under the License.
1515
-->
1616

17-
<manifest package="com.amplifyframework.annotations"
18-
xmlns:android="http://schemas.android.com/apk/res/android">
19-
</manifest>
20-
17+
<manifest />

aws-analytics-pinpoint/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ apply(from = rootProject.file("configuration/publishing.gradle"))
2424

2525
group = properties["POM_GROUP"].toString()
2626

27+
android {
28+
namespace = "com.amplifyframework.analytics.pinpoint"
29+
}
30+
2731
dependencies {
2832
implementation(project(":core"))
2933
implementation(project(":aws-core"))

aws-analytics-pinpoint/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
permissions and limitations under the License.
1515
-->
1616

17-
<manifest package="com.amplifyframework.analytics.pinpoint" />
17+
<manifest />

aws-api-appsync/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ apply(from = rootProject.file("configuration/publishing.gradle"))
2323

2424
group = properties["POM_GROUP"].toString()
2525

26+
android {
27+
namespace = "com.amplifyframework.appsync"
28+
}
29+
2630
dependencies {
2731
implementation(project(":core"))
2832
implementation(project(":aws-core"))

aws-api-appsync/src/main/AndroidManifest.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,4 @@
1414
permissions and limitations under the License.
1515
-->
1616

17-
<manifest package="com.amplifyframework.appsync">
18-
</manifest>
19-
17+
<manifest />

aws-api/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ apply(from = rootProject.file("configuration/publishing.gradle"))
2424
group = properties["POM_GROUP"].toString()
2525

2626
android {
27-
27+
namespace = "com.amplifyframework.api.aws"
2828
defaultConfig {
2929
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
3030
}

aws-api/src/main/AndroidManifest.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
permissions and limitations under the License.
1515
-->
1616

17-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
18-
package="com.amplifyframework.api.aws">
17+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1918
<uses-permission android:name="android.permission.INTERNET" />
2019
</manifest>
21-

aws-auth-cognito/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ apply(from = rootProject.file("configuration/checkstyle.gradle"))
2424

2525
group = properties["POM_GROUP"].toString()
2626

27+
android {
28+
namespace = "com.amplifyframework.auth.cognito"
29+
}
30+
2731
dependencies {
2832
implementation(project(":core"))
2933
implementation(project(":aws-core"))

0 commit comments

Comments
 (0)