Merge pull request #1337 from sictiru/android-api-28

Android api 28 update
This commit is contained in:
Samuel Clay 2020-06-29 12:32:51 -04:00 committed by GitHub
commit 8b70d19de1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 17 deletions

View file

@ -1,12 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.newsblur"
android:versionCode="166"
android:versionName="10.0b4" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="28" />
package="com.newsblur">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

View file

@ -8,7 +8,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.android.tools.build:gradle:3.6.3'
}
}
@ -25,18 +25,24 @@ apply plugin: 'checkstyle'
apply plugin: 'findbugs'
dependencies {
compile 'com.android.support:support-core-utils:27.1.1'
compile 'com.android.support:support-fragment:27.1.1'
compile 'com.android.support:support-core-ui:27.1.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile 'com.google.code.gson:gson:2.8.2'
compile 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:support-core-utils:28.0.0'
implementation 'com.android.support:support-fragment:28.0.0'
implementation 'com.android.support:support-core-ui:28.0.0'
implementation 'com.jakewharton:butterknife:7.0.1'
implementation 'com.squareup.okhttp3:okhttp:3.12.12'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.android.support:recyclerview-v7:28.0.0'
}
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
compileSdkVersion 28
defaultConfig {
applicationId "com.newsblur"
minSdkVersion 21
targetSdkVersion 28
versionCode 166
versionName "10.0b4"
}
compileOptions.with {
sourceCompatibility = JavaVersion.VERSION_1_7
}