Skip to content

Commit

Permalink
Updated versions of android support libraries, SDK, and build tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
zach-klippenstein committed Mar 28, 2015
1 parent 80e7105 commit 7ce2c12
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions library/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
android:targetSdkVersion="22" />

</manifest>
</manifest>
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'android-library'

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
compileSdkVersion 22
buildToolsVersion '22.0.1'

sourceSets {
main {
Expand Down
4 changes: 2 additions & 2 deletions sample/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
android:targetSdkVersion="22" />

<application
android:allowBackup="true"
Expand All @@ -32,4 +32,4 @@
</activity>
</application>

</manifest>
</manifest>
9 changes: 5 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@ repositories {
}
dependencies {
compile project(':library')
compile 'com.android.support:appcompat-v7:19.0.+'
compile 'com.android.support:support-v4:19.1.+'
compile 'com.android.support:appcompat-v7:22.0.+'
compile 'com.android.support:support-v4:22.0.+'
compile 'com.nineoldandroids:library:2.4.0+'

}

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
minSdkVersion 7
compileSdkVersion 22
buildToolsVersion '22.0.1'

sourceSets {
main {
Expand Down

0 comments on commit 7ce2c12

Please sign in to comment.