Skip to content

Commit

Permalink
Gradle 8.2 support (#88)
Browse files Browse the repository at this point in the history
* Add conditional namespace to support gradle 8

* Use git as pub resource

* Revert "Use git as pub resource"

This reverts commit 027911d.

* fix

* fix

* fix

* Revert "fix"

This reverts commit 2a5a804.

* Revert "fix"

This reverts commit fbee65b.

* Revert "fix"

This reverts commit 746c0ca.

* Revert "Revert "Use git as pub resource""

This reverts commit 4b7485e.

* Revert "Use git as pub resource"

This reverts commit 027911d.
  • Loading branch information
egonm12 authored Apr 18, 2024
1 parent 4547b79 commit 0c65840
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugins/flutter_aepassurance/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepassurance'
}

compileSdk 33

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepcore/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepcore'
}

compileSdk 33

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepedge/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepedge'
}

compileSdk 33

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepedgebridge/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepedgebridge'
}

compileSdk 33

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepedgeconsent/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepedgeconsent'
}

compileSdk 33

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepedgeidentity/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepedgeidentity'
}

compileSdk 33

defaultConfig {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepmessaging/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepmessaging'
}

compileSdkVersion 33

compileOptions {
Expand Down
4 changes: 4 additions & 0 deletions plugins/flutter_aepuserprofile/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
if (project.android.hasProperty("namespace")) {
namespace 'com.adobe.marketing.mobile.flutter.flutter_aepuserprofile'
}

compileSdk 33

compileOptions {
Expand Down

0 comments on commit 0c65840

Please sign in to comment.