target sdk 24

This commit is contained in:
Anthony Restaino 2016-09-13 23:11:39 -04:00
parent 4d8130db43
commit 43b94f2025
3 changed files with 78 additions and 76 deletions

View File

@ -3,8 +3,10 @@ sudo: false
android: android:
components: components:
- tools - tools
- build-tools-24.0.1
- build-tools-23.0.3 - build-tools-23.0.3
- build-tools-22.0.1 - build-tools-22.0.1
- android-24
- android-23 - android-23
- android-22 - android-22
- extra-android-support - extra-android-support

View File

@ -3,12 +3,12 @@ apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'com.getkeepsafe.dexcount' apply plugin: 'com.getkeepsafe.dexcount'
android { android {
compileSdkVersion 23 compileSdkVersion 24
buildToolsVersion "23.0.3" buildToolsVersion "24.0.1"
defaultConfig { defaultConfig {
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 23 targetSdkVersion 24
versionName "4.3.3" versionName "4.3.3"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }
@ -66,11 +66,11 @@ dexcount {
dependencies { dependencies {
// support libraries // support libraries
compile 'com.android.support:palette-v7:23.4.0' compile 'com.android.support:palette-v7:24.2.1'
compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:design:23.4.0' compile 'com.android.support:design:24.2.1'
compile 'com.android.support:recyclerview-v7:23.4.0' compile 'com.android.support:recyclerview-v7:24.2.1'
compile 'com.android.support:support-v4:23.4.0' compile 'com.android.support:support-v4:24.2.1'
// html parsing for reading mode // html parsing for reading mode
compile 'org.jsoup:jsoup:1.9.2' compile 'org.jsoup:jsoup:1.9.2'

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 A.C.R. Development --> <!-- Copyright 2014 A.C.R. Development -->
<manifest package="acr.browser.lightning" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android="http://schemas.android.com/apk/res/android"> package="acr.browser.lightning" >
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />