2019-11-29 15:59:18 +00:00
|
|
|
group 'com.pichillilorenzo.flutter_inappwebview'
|
2018-09-14 00:21:51 +00:00
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-08 09:18:51 +00:00
|
|
|
mavenCentral()
|
2018-09-14 00:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-12-27 23:17:58 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.0'
|
2018-09-14 00:21:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-08 09:18:51 +00:00
|
|
|
mavenCentral()
|
2018-09-14 00:21:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2022-10-04 10:35:50 +00:00
|
|
|
compileSdkVersion 33
|
2018-09-14 00:21:51 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2022-10-06 15:10:08 +00:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
2019-11-02 18:58:01 +00:00
|
|
|
dependencies {
|
2022-10-04 10:35:50 +00:00
|
|
|
implementation 'androidx.webkit:webkit:1.5.0'
|
2022-04-17 19:47:35 +00:00
|
|
|
implementation 'androidx.browser:browser:1.4.0'
|
2022-10-04 10:35:50 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.5.1'
|
2021-08-19 23:39:40 +00:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
|
2021-03-05 22:19:50 +00:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2019-11-02 18:58:01 +00:00
|
|
|
}
|
2018-09-14 00:21:51 +00:00
|
|
|
}
|