Skip to content
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
Binary file removed .DS_Store
Binary file not shown.
5 changes: 5 additions & 0 deletions flutter-hms-account/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 33
buildToolsVersion "31.0.0"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.hms.flutter.account'
}

defaultConfig {
minSdkVersion 19
targetSdkVersion 33
Expand Down
7 changes: 6 additions & 1 deletion flutter-hms-ads/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 33
buildToolsVersion "31.0.0"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.hms.flutter.ads'
}

defaultConfig {
minSdkVersion 19
targetSdkVersion 33
Expand All @@ -48,4 +53,4 @@ dependencies {
implementation 'com.huawei.hms:ads-installreferrer:3.4.62.300'
implementation 'com.huawei.hms:stats:6.12.0.300'
implementation 'com.huawei.agconnect:agconnect-core:1.9.1.301'
}
}
5 changes: 5 additions & 0 deletions flutter-hms-adsprime/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 33
buildToolsVersion "31.0.0"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.hms.flutter.ads'
}

defaultConfig {
minSdkVersion 19
targetSdkVersion 33
Expand Down
11 changes: 6 additions & 5 deletions flutter-hms-analytics/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:3.6.0'
classpath 'com.android.tools.build:gradle:8.1.4'
}
}

Expand All @@ -25,8 +25,9 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 33
buildToolsVersion "31.0.0"

if (project.android.hasProperty("namespace")) {
namespace 'com.huawei.hms.flutter.analytics'
}
defaultConfig {
minSdkVersion 19
targetSdkVersion 33
Expand All @@ -35,8 +36,8 @@ android {
disable 'InvalidPackage'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#Wed Jun 05 14:49:32 PYT 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading