Skip to content

Commit a2819db

Browse files
committed
Update gradle and clean up manifest warnings
1 parent 3bccaac commit a2819db

7 files changed

Lines changed: 13 additions & 22 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ android:
66
- tools
77
- platform-tools
88

9-
- build-tools-27.0.3
9+
- build-tools-28.0.3
1010
- android-21
11-
- android-27
11+
- android-28
1212
- sys-img-armeabi-v7a-android-21
1313
- extra-android-support
1414

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.1.2'
10+
classpath 'com.android.tools.build:gradle:3.2.1'
1111
}
1212
}
1313

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
1414
org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m
1515

16-
VERSION_NAME=1.8.10.0
16+
VERSION_NAME=1.8.10.1-SNAPSHOT
1717
VERSION_CODE=1
1818

1919
ANDROID_BUILD_MIN_SDK_VERSION=9
20-
ANDROID_BUILD_TARGET_SDK_VERSION=27
21-
ANDROID_BUILD_SDK_VERSION=27
22-
ANDROID_BUILD_TOOLS_VERSION=27.0.3
20+
ANDROID_BUILD_TARGET_SDK_VERSION=28
21+
ANDROID_BUILD_SDK_VERSION=28
22+
ANDROID_BUILD_TOOLS_VERSION=28.0.3
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sun Apr 08 15:10:40 CDT 2018
1+
#Sat Oct 06 20:52:41 CDT 2018
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.tom_roush.pdfbox"
4-
android:versionCode="1"
5-
android:versionName="1.0" >
6-
7-
<uses-sdk
8-
android:minSdkVersion="19"
9-
android:targetSdkVersion="21" />
3+
package="com.tom_roush.pdfbox">
104

115
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
126
</manifest>

sample/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
applicationId 'com.tom_roush.pdfbox.sample'
9-
minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
9+
minSdkVersion 14
1010
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
1111
versionName project.VERSION_NAME
1212
versionCode Integer.parseInt(project.VERSION_CODE)
@@ -26,5 +26,5 @@ android {
2626
dependencies {
2727
// implementation project(':library')
2828
implementation 'com.tom_roush:pdfbox-android:1.8.10.0'
29-
implementation 'com.android.support:appcompat-v7:21.0.3'
29+
implementation 'com.android.support:appcompat-v7:28.0.0'
3030
}

sample/src/main/AndroidManifest.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.tom_roush.pdfbox.sample" >
4-
5-
<uses-sdk
6-
android:minSdkVersion="9"
7-
android:targetSdkVersion="21" />
4+
85
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
96

107
<application

0 commit comments

Comments
 (0)