Skip to content

Commit 1c35349

Browse files
support library dependency removed from lib project, general refactor
1 parent 5bc2410 commit 1c35349

File tree

13 files changed

+416
-557
lines changed

13 files changed

+416
-557
lines changed

AndroidBootstrap/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<uses-sdk
88
android:minSdkVersion="7"
9-
android:targetSdkVersion="19" />
9+
android:targetSdkVersion="21" />
1010

1111
<application/>
1212

AndroidBootstrap/build.gradle

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
apply plugin: 'android-library'
1+
apply plugin: 'com.android.library'
22

33
dependencies {
4-
compile fileTree(dir: 'libs', include: '*.jar')
4+
55
}
66

77
android {
8-
compileSdkVersion 18
8+
compileSdkVersion 21
99
buildToolsVersion "20.0.0"
1010

1111
defaultConfig {
1212
minSdkVersion 7
13-
targetSdkVersion 19
13+
targetSdkVersion 21
1414
versionCode = Integer.parseInt(VERSION_CODE)
1515
versionName = VERSION_NAME
1616
}
@@ -26,15 +26,7 @@ android {
2626
assets.srcDirs = ['assets']
2727
}
2828

29-
// Move the tests to tests/java, tests/res, etc...
3029
instrumentTest.setRoot('tests')
31-
32-
// Move the build types to build-types/<type>
33-
// For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
34-
// This moves them out of them default location under src/<type>/... which would
35-
// conflict with src/ being used by the main source set.
36-
// Adding new build types or product flavors should be accompanied
37-
// by a similar customization.
3830
debug.setRoot('build-types/debug')
3931
release.setRoot('build-types/release')
4032
}

0 commit comments

Comments
 (0)