Merge branch 'release/v0.9.5.2'

This commit is contained in:
Jan Christian Grünhage 2017-03-19 15:05:38 +01:00
commit d1bbec5b36
Signed by: jcgruenhage
GPG key ID: 321A67D9EE8BC3E1
4 changed files with 11 additions and 10 deletions

View file

@ -4,6 +4,10 @@ This Android app exports your Play Music mp3 files directly to your sdcard
or a documents provider using root permissions.
You can also setup automatic export, that exports all currently cached not yet exported music.
[<img src="https://f-droid.org/badge/get-it-on.png"
alt="Get it on F-Droid"
height="80">](https://f-droid.org/app/re.jcg.playmusicexporter)
## About
This AndroidStudio project allow you to access the database from Google's PlayMusic

View file

@ -20,8 +20,6 @@
* THE SOFTWARE.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
@ -38,5 +36,4 @@ allprojects {
repositories {
jcenter()
}
}

View file

@ -42,5 +42,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:appcompat-v7:25.2.0'
}

View file

@ -33,8 +33,8 @@ android {
minSdkVersion 21
targetSdkVersion 25
// TODO Change Version with releases
versionCode 108
versionName '0.9.5.1'
versionCode 109
versionName '0.9.5.2'
vectorDrawables.useSupportLibrary = true
jackOptions {
@ -58,9 +58,9 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':framework')
compile project(':playmusiclib')
compile 'com.android.support:appcompat-v7:25.1.1'
compile 'com.android.support:support-v4:25.1.1'
compile 'com.android.support:design:25.1.1'
compile 'com.android.support:support-vector-drawable:25.1.1'
compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:support-vector-drawable:25.2.0'
compile 'com.github.paolorotolo:appintro:4.1.0'
}