2018-09-14 00:21:51 +00:00
|
|
|
group 'com.pichillilorenzo.flutter_inappbrowser'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-03-11 14:52:09 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
2018-09-14 00:21:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rootProject.allprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2019-10-28 03:58:25 +00:00
|
|
|
compileSdkVersion 29
|
2018-09-14 00:21:51 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2018-09-19 02:10:00 +00:00
|
|
|
minSdkVersion 17
|
2019-03-11 07:14:26 +00:00
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
2018-09-19 02:10:00 +00:00
|
|
|
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
2018-09-14 00:21:51 +00:00
|
|
|
}
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
}
|
|
|
|
}
|
2018-09-18 01:07:12 +00:00
|
|
|
|
|
|
|
dependencies {
|
2019-03-11 14:52:09 +00:00
|
|
|
implementation 'androidx.webkit:webkit:1.0.0'
|
|
|
|
implementation 'androidx.browser:browser:1.0.0'
|
2019-04-25 09:31:04 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
2018-10-12 01:46:33 +00:00
|
|
|
implementation 'com.squareup.okhttp3:mockwebserver:3.11.0'
|
2018-09-19 02:10:00 +00:00
|
|
|
}
|