Skip to content

Commit 7a4ef01

Browse files
committed
fix(rtn-pn): corret the namespace
1 parent 6bef5b8 commit 7a4ef01

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/amazon-cognito-identity-js/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.android.Version
22

33
def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
4-
def androidManifestPath = agpVersion >= 7 ? 'src/main/AndroidManifest.xml' : 'src/hasNamespace/AndroidManifest.xml'
4+
def androidManifestPath = agpVersion >= 7 ? 'src/main/AndroidManifest.xml' : 'src/hasPackageName/AndroidManifest.xml'
55

66
buildscript {
77
repositories {

packages/rtn-push-notification/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import com.android.Version
22

33
def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
4-
def androidManifestPath = agpVersion >= 7 ? 'src/main/AndroidManifest.xml' : 'src/hasNamespace/AndroidManifest.xml'
4+
def androidManifestPath = agpVersion >= 7 ? 'src/main/AndroidManifest.xml' : 'src/hasPackageName/AndroidManifest.xml'
55

66
buildscript {
77
def kotlin_version = rootProject.ext.has('kotlinVersion')
@@ -32,7 +32,7 @@ def getExtOrDefault(prop) {
3232

3333
android {
3434
if (agpVersion >= 7) {
35-
namespace 'com.amazonaws.amplify.rtnpushnotification'
35+
namespace 'com.amazonaws.amplify'
3636
}
3737

3838
compileSdkVersion getExtOrDefault('compileSdkVersion')

0 commit comments

Comments
 (0)