Commit e9057859 by Maurits van Beusekom

Merge branch 'master' of github.com:Baseflow/flutter-permission-handler

parents 7215c903 54c21058
...@@ -27,6 +27,10 @@ project.getTasks().withType(JavaCompile){ ...@@ -27,6 +27,10 @@ project.getTasks().withType(JavaCompile){
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
// Conditional for compatibility with AGP <4.2.
if (project.android.hasProperty("namespace")) {
namespace 'com.baseflow.permissionhandler'
}
compileSdkVersion 33 compileSdkVersion 33
compileOptions { compileOptions {
...@@ -37,4 +41,4 @@ android { ...@@ -37,4 +41,4 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
} }
} }
\ No newline at end of file
...@@ -25,6 +25,7 @@ apply plugin: 'com.android.application' ...@@ -25,6 +25,7 @@ apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android { android {
namespace 'com.baseflow.permissionhandler.example'
compileSdkVersion 33 compileSdkVersion 33
compileOptions { compileOptions {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment