David PHAM-VAN

Remove useless android dependencies

1 # Changelog 1 # Changelog
2 2
  3 +## 3.6.4
  4 +
  5 +- Remove useless android dependencies, reduces the final apk file size.
  6 +
3 ## 3.6.3 7 ## 3.6.3
4 8
5 - Fix Android compilation issues 9 - Fix Android compilation issues
@@ -8,7 +8,7 @@ buildscript { @@ -8,7 +8,7 @@ buildscript {
8 } 8 }
9 9
10 dependencies { 10 dependencies {
11 - classpath 'com.android.tools.build:gradle:3.3.1' 11 + classpath 'com.android.tools.build:gradle:3.5.0'
12 } 12 }
13 } 13 }
14 14
@@ -22,17 +22,12 @@ rootProject.allprojects { @@ -22,17 +22,12 @@ rootProject.allprojects {
22 apply plugin: 'com.android.library' 22 apply plugin: 'com.android.library'
23 23
24 android { 24 android {
25 - compileSdkVersion 28 25 + compileSdkVersion 29
26 26
27 defaultConfig { 27 defaultConfig {
28 minSdkVersion 16 28 minSdkVersion 16
29 - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"  
30 } 29 }
31 lintOptions { 30 lintOptions {
32 disable 'InvalidPackage' 31 disable 'InvalidPackage'
33 } 32 }
34 } 33 }
35 -  
36 -dependencies {  
37 - api 'androidx.appcompat:appcompat:1.0.2'  
38 -}  
@@ -4,7 +4,7 @@ description: Plugin that allows Flutter apps to generate and print documents to @@ -4,7 +4,7 @@ description: Plugin that allows Flutter apps to generate and print documents to
4 homepage: https://github.com/DavBfr/dart_pdf/tree/master/printing 4 homepage: https://github.com/DavBfr/dart_pdf/tree/master/printing
5 repository: https://github.com/DavBfr/dart_pdf 5 repository: https://github.com/DavBfr/dart_pdf
6 issue_tracker: https://github.com/DavBfr/dart_pdf/issues 6 issue_tracker: https://github.com/DavBfr/dart_pdf/issues
7 -version: 3.6.3 7 +version: 3.6.4
8 8
9 environment: 9 environment:
10 sdk: ">=2.3.0 <3.0.0" 10 sdk: ">=2.3.0 <3.0.0"