Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature-added-namespaces #17

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions agconnect_applinking/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ android {
compileSdkVersion 30
buildToolsVersion = '30.0.3'

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agc.flutter.applinking'
}

defaultConfig {
minSdkVersion 19
targetSdkVersion 30
Expand Down
4 changes: 4 additions & 0 deletions agconnect_appmessaging/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agc.flutter.appmessaging.agconnect_appmessaging'
}

defaultConfig {
minSdkVersion 19
Expand Down
4 changes: 4 additions & 0 deletions agconnect_auth/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
compileSdkVersion 30
buildToolsVersion "30.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agconnectauth'
}

defaultConfig {
minSdkVersion 18
targetSdkVersion 30
Expand Down
7 changes: 6 additions & 1 deletion agconnect_clouddb/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ apply plugin: "com.android.library"
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agconnectclouddb'
}

defaultConfig {
minSdkVersion 19
targetSdkVersion 29
Expand All @@ -38,6 +43,6 @@ android {
}
}

dependencies {
dependencies {
implementation "com.huawei.agconnect:agconnect-cloud-database:1.9.1.300"
}
4 changes: 4 additions & 0 deletions agconnect_cloudfunctions/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
compileSdkVersion 30
buildToolsVersion "30.0.1"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agc.flutter.cloudfunctions'
}

defaultConfig {
minSdkVersion 18
targetSdkVersion 30
Expand Down
4 changes: 4 additions & 0 deletions agconnect_core/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
compileSdkVersion 30
buildToolsVersion "30.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agconnectcore'
}

defaultConfig {
minSdkVersion 18
targetSdkVersion 30
Expand Down
4 changes: 4 additions & 0 deletions agconnect_crash/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
compileSdkVersion 30
buildToolsVersion "30.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agconnectcrash'
}

defaultConfig {
minSdkVersion 18
targetSdkVersion 30
Expand Down
4 changes: 4 additions & 0 deletions agconnect_remote_config/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
compileSdkVersion 30
buildToolsVersion "30.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agconnectremoteconfig'
}

defaultConfig {
minSdkVersion 18
targetSdkVersion 30
Expand Down
4 changes: 4 additions & 0 deletions agconnect_storage/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ android {
compileSdkVersion 30
buildToolsVersion "30.0.3"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.agconnect.cloudstorage'
}

defaultConfig {
minSdkVersion 18
targetSdkVersion 30
Expand Down