Skip to content

Commit

Permalink
update build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredrummler committed Oct 4, 2016
1 parent a80d0c7 commit cb11e35
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 9 deletions.
52 changes: 46 additions & 6 deletions .gitignore
@@ -1,7 +1,47 @@
.gradle
/local.properties
.idea
########### Specifies intentionally untracked files to ignore ###########

### Gradle
.gradle/
build/

### IntelliJ IDEA
/.idea
*.iml
*.iws
captures/
.navigation/
local.properties
bin/
gen/
out/
*.apk
*.ap_

### Android
*.jks
*.dex

### Java
*.class
hs_err_pid*

### Windows
Desktop.ini
Thumbs.db
ehthumbs.db

### OSX
.DS_Store
/build
/captures
*.iml

### Linux
*~
.fuse_hidden*
.directory
.Trash-*

### Logs
*.log

### Crashlytics
crashlytics.properties
fabric.properties
2 changes: 1 addition & 1 deletion library/build.gradle
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
buildToolsVersion "24.0.3"

defaultConfig {
minSdkVersion 9
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "24.0.1"
buildToolsVersion "24.0.3"

defaultConfig {
applicationId "com.jaredrummler.apkparser.sample"
Expand All @@ -22,7 +22,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile project(':library')
}

0 comments on commit cb11e35

Please sign in to comment.