Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Revert back to use Android SDK 23
Browse files Browse the repository at this point in the history
  • Loading branch information
kido1611 committed Aug 10, 2016
1 parent 7437969 commit 96ff27c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@ android:
components:
- platform-tools
- tools
- build-tools-24.0.1
- android-24
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-android-support
language: java
jdk:
- oraclejdk8


script: ./gradlew build

before_install:
Expand Down
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

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

defaultConfig {
applicationId "id.kido1611.arduinoconnectexample"
minSdkVersion 15
targetSdkVersion 24
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
Expand All @@ -22,8 +22,8 @@ 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:design:24.1.1'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'

compile project(":arduinoconnect")
}
8 changes: 4 additions & 4 deletions arduinoconnect/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

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

defaultConfig {
minSdkVersion 15
targetSdkVersion 24
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
Expand All @@ -21,5 +21,5 @@ 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:23.4.0'
}

0 comments on commit 96ff27c

Please sign in to comment.