2023-11-27 13:03:36 +01:00
|
|
|
group 'com.pichillilorenzo.flutter_inappwebview_android'
|
2018-09-14 02:21:51 +02:00
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-08 10:18:51 +01:00
|
|
|
mavenCentral()
|
2018-09-14 02:21:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-12-15 17:43:29 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:8.0.1'
|
2018-09-14 02:21:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
2022-03-08 10:18:51 +01:00
|
|
|
mavenCentral()
|
2018-09-14 02:21:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2022-12-15 17:43:29 +01:00
|
|
|
// Conditional for compatibility with AGP <4.2.
|
|
|
|
if (project.android.hasProperty("namespace")) {
|
2023-11-27 13:03:36 +01:00
|
|
|
namespace 'com.pichillilorenzo.flutter_inappwebview_android'
|
2022-12-15 17:43:29 +01:00
|
|
|
}
|
2022-10-04 12:35:50 +02:00
|
|
|
compileSdkVersion 33
|
2018-09-14 02:21:51 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2022-10-06 17:10:08 +02:00
|
|
|
minSdkVersion 19
|
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'
|
|
|
|
}
|
|
|
|
}
|
2019-11-02 19:58:01 +01:00
|
|
|
dependencies {
|
2023-09-30 19:53:26 +02:00
|
|
|
implementation 'androidx.webkit:webkit:1.8.0'
|
|
|
|
implementation 'androidx.browser:browser:1.6.0'
|
2022-12-15 17:43:29 +01:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
2021-03-05 23:19:50 +01:00
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2019-11-02 19:58:01 +01:00
|
|
|
}
|
2018-09-14 02:21:51 +02:00
|
|
|
}
|