iosWebViewFix/android/build.gradle

55 lines
1.3 KiB
Groovy
Raw Normal View History

2019-11-29 16:59:18 +01:00
group 'com.pichillilorenzo.flutter_inappwebview'
2018-09-14 02:21:51 +02:00
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
2018-09-14 02:21:51 +02:00
}
}
rootProject.allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.library'
android {
2020-06-22 00:07:12 +02:00
compileSdkVersion 30
2018-09-14 02:21:51 +02:00
defaultConfig {
2018-09-19 04:10:00 +02:00
minSdkVersion 17
2019-03-11 08:14:26 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-09-19 04:10:00 +02:00
vectorDrawables.useSupportLibrary = true
2019-11-13 16:11:02 +08:00
consumerProguardFiles 'proguard-rules.pro'
2018-09-14 02:21:51 +02:00
}
lintOptions {
disable 'InvalidPackage'
}
2019-11-13 16:11:02 +08: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.4.0'
implementation 'androidx.browser:browser:1.3.0'
implementation 'androidx.appcompat:appcompat:1.2.0'
2021-08-19 17:39:40 -06:00
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
}
2018-09-14 02:21:51 +02:00
}