Skip to content
This repository has been archived by the owner on May 21, 2022. It is now read-only.

Commit

Permalink
Update For Oreo
Browse files Browse the repository at this point in the history
Dropped android < 4.0
  • Loading branch information
Debugs authored and Debugs committed Sep 16, 2017
1 parent c6207d2 commit 4d53988
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 12 deletions.
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '25.0.0'
compileSdkVersion 26
buildToolsVersion '26.0.0'
defaultConfig {
applicationId "com.adam.aslfms"
minSdkVersion 7
targetSdkVersion 24
minSdkVersion 14
targetSdkVersion 26

testApplicationId "com.adam.aslfms.test"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
Expand All @@ -21,8 +21,8 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:support-v4:24.1.1'
compile 'com.android.support:design:24.1.1'
compile 'com.android.support:appcompat-v7:26.0.0'
compile 'com.android.support:support-v4:26.0.0'
compile 'com.android.support:design:26.0.0'
//compile 'info.guardianproject.netcipher:netcipher:1.2'
}
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.adam.aslfms"
android:versionCode="45"
android:versionName="1.5.4">
android:versionCode="46"
android:versionName="1.5.5">

<supports-screens
android:anyDensity="true"
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/assets/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
- 1.5.6 (2017-9-17)
*

- 1.5.5 (2017-9-16)
* ListenBrainz fix (thanks to @19379)
* Notice: Version 1.5.6 dropping android < 4.0 support
Expand Down
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.2'
classpath 'com.android.tools.build:gradle:2.3.3'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -15,5 +18,8 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon May 29 10:27:50 EDT 2017
#Sat Sep 16 14:41:14 EDT 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

0 comments on commit 4d53988

Please sign in to comment.