Skip to content

Commit

Permalink
fix: recompile for android 5.0 (API 21)
Browse files Browse the repository at this point in the history
fixes #3
  • Loading branch information
benkaiser committed Nov 23, 2014
1 parent 8e2227e commit 4004158
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
Binary file modified app/app-release.apk
Binary file not shown.
7 changes: 4 additions & 3 deletions app/app.iml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@
<excludeFolder url="file://$MODULE_DIR$/build/intermediates" />
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
</content>
<orderEntry type="jdk" jdkName="Android API 19 Platform" jdkType="Android SDK" />
<orderEntry type="jdk" jdkName="Android API 21 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" exported="" name="appcompat-v7-19.0.0" level="project" />
<orderEntry type="library" exported="" name="support-annotations-21.0.2" level="project" />
<orderEntry type="library" exported="" name="support-v4-21.0.2" level="project" />
<orderEntry type="library" exported="" name="androidasync-1.3.7" level="project" />
<orderEntry type="library" exported="" name="support-v4-19.0.0" level="project" />
<orderEntry type="library" exported="" name="appcompat-v7-21.0.2" level="project" />
</component>
</module>

8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
compileSdkVersion 21
buildToolsVersion '21.1.1'

defaultConfig {
applicationId "com.kaiserapps.benkaiser.nodemusicsyncforandroid"
minSdkVersion 8
targetSdkVersion 19
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
Expand All @@ -22,5 +22,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile files('libs/androidasync-1.3.7.jar')
compile 'com.android.support:appcompat-v7:19.+'
compile 'com.android.support:appcompat-v7:21.+'
}

0 comments on commit 4004158

Please sign in to comment.