Skip to content

Commit

Permalink
优化项目配置
Browse files Browse the repository at this point in the history
  • Loading branch information
mahao committed Mar 20, 2017
1 parent e342562 commit e28f1aa
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 19 deletions.
33 changes: 27 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,29 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
.DS_Store
/build
/captures
.classpath
.project
.settings
*.class
*.swp
*.bak
*.iml
*.zip
bin
build
target
dist
/.idea
/out
/*.ipr
/*.iws
/log.txt
gen
gen-external-apklibsres/values/dimens.xml
gen-external-apklibs/
gradle.properties
gradle/
gradlew
gradlew.bat
import-summary.txt
local.properties
app/build
3 changes: 1 addition & 2 deletions customviewdemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@ dependencies {
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.0.0'
compile 'com.android.support:design:24.1.0'
compile 'com.github.PhilJay:MPAndroidChart:v3.0.0-beta1'
compile 'com.android.support:design:23.0.0'
}
2 changes: 1 addition & 1 deletion hardware/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:appcompat-v7:23.3.0'
}
6 changes: 3 additions & 3 deletions ndkdemo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion "23.0.3"
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.alex.ndkdemo"
Expand All @@ -22,5 +22,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.2.0'
compile 'com.android.support:appcompat-v7:23.3.0'
}
4 changes: 2 additions & 2 deletions networklib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.example.networklib"
Expand All @@ -22,7 +22,7 @@ android {
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.squareup.okhttp3:okhttp:3.3.1'
compile 'com.google.code.gson:gson:2.7'
compile 'com.squareup.okio:okio:1.8.0'
Expand Down
4 changes: 2 additions & 2 deletions system4compent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.example.system4compent"
Expand All @@ -22,5 +22,5 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:appcompat-v7:23.3.0'
}
6 changes: 3 additions & 3 deletions systemwidgetdemo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:24.1.0'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile 'com.github.Aspsine:SwipeToLoadLayout:1.0.3'
compile 'in.srain.cube:ultra-ptr:1.0.11'
compile 'com.android.support:design:24.1.0'
compile 'com.android.support:design:23.3.0'
}


0 comments on commit e28f1aa

Please sign in to comment.