iosWebViewFix/flutter_inappwebview_android/android/build.gradle

58 lines
1.4 KiB
Groovy
Raw Normal View History

group 'com.pichillilorenzo.flutter_inappwebview_android'
2018-09-14 00:21:51 +00:00
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
mavenCentral()
2018-09-14 00:21:51 +00:00
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.1'
2018-09-14 00:21:51 +00:00
}
}
rootProject.allprojects {
repositories {
google()
mavenCentral()
2018-09-14 00:21:51 +00:00
}
}
apply plugin: 'com.android.library'
android {
// Conditional for compatibility with AGP <4.2.
if (project.android.hasProperty("namespace")) {
namespace 'com.pichillilorenzo.flutter_inappwebview_android'
}
2022-10-04 10:35:50 +00:00
compileSdkVersion 33
2018-09-14 00:21:51 +00:00
defaultConfig {
minSdkVersion 19
2019-03-11 07:14:26 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-09-19 02:10:00 +00:00
vectorDrawables.useSupportLibrary = true
2019-11-13 08:11:02 +00:00
consumerProguardFiles 'proguard-rules.pro'
2018-09-14 00:21:51 +00:00
}
lintOptions {
disable 'InvalidPackage'
}
2019-11-13 08:11:02 +00:00
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
implementation 'androidx.webkit:webkit:1.8.0'
implementation 'androidx.browser:browser:1.6.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
}
2018-09-14 00:21:51 +00:00
}