Skip to content

Commit

Permalink
Merge pull request #90 from adjust/v4
Browse files Browse the repository at this point in the history
V4
  • Loading branch information
nonelse committed Mar 13, 2015
2 parents aeb54a3 + 98ad624 commit 4e5b14a
Show file tree
Hide file tree
Showing 123 changed files with 7,695 additions and 4,512 deletions.
6 changes: 6 additions & 0 deletions Adjust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
4 changes: 0 additions & 4 deletions Adjust/AndroidManifest.xml

This file was deleted.

1 change: 1 addition & 0 deletions Adjust/adjust/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
21 changes: 21 additions & 0 deletions Adjust/adjust/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

defaultConfig {
minSdkVersion 9
targetSdkVersion 21
versionCode 1
versionName "4.0.0"
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

task jar(type: Jar) {
from 'src/main/java'
}
8 changes: 8 additions & 0 deletions Adjust/adjust/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.adjust.sdk">

<application />
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="21" />
</manifest>
Loading

0 comments on commit 4e5b14a

Please sign in to comment.