Skip to content

Commit 1da7d05

Browse files
committed
Merge branch 'development'
2 parents f0e8e71 + 9f7a694 commit 1da7d05

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.1.2'
11+
classpath 'com.android.tools.build:gradle:3.2.1'
1212
}
1313
}
1414

@@ -21,8 +21,8 @@ allprojects {
2121
apply plugin: 'com.android.library'
2222

2323
android {
24-
compileSdkVersion 25
25-
buildToolsVersion '27.0.3'
24+
compileSdkVersion 28
25+
buildToolsVersion '28.0.3'
2626

2727
defaultConfig {
2828
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

example/android/app/build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ apply plugin: 'com.android.application'
1515
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
1616

1717
android {
18-
compileSdkVersion 27
19-
buildToolsVersion '27.0.3'
18+
compileSdkVersion 28
19+
buildToolsVersion '28.0.3'
2020

2121
lintOptions {
2222
disable 'InvalidPackage'
@@ -27,6 +27,7 @@ android {
2727

2828
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
2929
applicationId "com.yourcompany.flutter_webview_plugin_example"
30+
minSdkVersion 16
3031
}
3132

3233
buildTypes {
@@ -43,7 +44,7 @@ flutter {
4344
}
4445

4546
dependencies {
46-
androidTestCompile 'com.android.support:support-annotations:25.0.0'
47-
androidTestCompile 'com.android.support.test:runner:0.5'
48-
androidTestCompile 'com.android.support.test:rules:0.5'
47+
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
48+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
49+
androidTestImplementation 'com.android.support.test:rules:1.0.2'
4950
}

example/android/app/src/main/AndroidManifest.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
android:versionCode="1"
44
android:versionName="0.0.1">
55

6-
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" />
7-
86
<!-- The INTERNET permission is required for development. Specifically,
97
flutter needs it to communicate with the running application
108
to allow setting breakpoints, to provide hot reload, etc.

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
}
99

1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:3.1.1'
11+
classpath 'com.android.tools.build:gradle:3.2.1'
1212
}
1313
}
1414

0 commit comments

Comments
 (0)