Skip to content

Commit

Permalink
Merge pull request #44 from stuffle/fixed-gradle-build
Browse files Browse the repository at this point in the history
Fixed Gradle build
  • Loading branch information
wellle committed Apr 29, 2014
2 parents 297acea + 9dd461e commit 4fa10fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions Adjust/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.adjust.sdk" >
<application />
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19"/>
</manifest>
11 changes: 6 additions & 5 deletions Adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:0.5+'
classpath 'com.android.tools.build:gradle:+'
}
}

Expand All @@ -16,11 +16,12 @@ repositories {
}

dependencies {
compile 'com.android.support:support-v4:18.0.+'
compile 'com.android.support:support-v4:19.1.+'
compile files('libs/google-play-services.jar')
}

android {
buildToolsVersion '18.1'
buildToolsVersion '19.0.3'
compileSdkVersion 19
defaultConfig {
versionCode 11
Expand All @@ -31,8 +32,8 @@ android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src/main/java']
resources.srcDirs = ['src/main/resources']
java.srcDirs = ['src']
resources.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
Expand Down

0 comments on commit 4fa10fe

Please sign in to comment.