Skip to content

Commit

Permalink
more robust and user-friendly build environment
Browse files Browse the repository at this point in the history
  • Loading branch information
kevindeland committed Jan 29, 2018
1 parent d9606c4 commit 3c2ffa1
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 15 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@ RoboTutor uses a large volume of external assets at runtime. To successfully ru

3. You may need to install different versions of the build tools and SDKs.

4. There are a number of build variants you can select to generate versions that support static language selections and also vesions that permit dynamic language selection at runtime.
4. add a file named "keystore.properties" to your root project directory, and give it the following contents
```
storePassword=xxx
keyPassword=xxx
keyAlias=xxx
storeFile=/Users/
```


5. There are a number of build variants you can select to generate versions that support static language selections and also vesions that permit dynamic language selection at runtime. In order to generate any flavor that depends on the key signature, you must generate your own keystore.



Expand Down
12 changes: 6 additions & 6 deletions comp_counting/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
compileSdkVersion rootProject.ext.rtCompileSdkVersion
buildToolsVersion rootProject.ext.rtBuildToolsVersion

defaultConfig {
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
minSdkVersion rootProject.ext.rtMinSdkVersion
targetSdkVersion rootProject.ext.rtTargetSdkVersion
versionCode rootProject.ext.rtVersionCode
versionName rootProject.ext.rtVersionName

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
8 changes: 4 additions & 4 deletions comp_counting2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ android {


defaultConfig {
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
minSdkVersion rootProject.ext.rtMinSdkVersion
targetSdkVersion rootProject.ext.rtTargetSdkVersion
versionCode rootProject.ext.rtVersionCode
versionName rootProject.ext.rtVersionName

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down
8 changes: 4 additions & 4 deletions comp_logging/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ android {
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
minSdkVersion rootProject.ext.rtMinSdkVersion
targetSdkVersion rootProject.ext.rtTargetSdkVersion
versionCode rootProject.ext.rtVersionCode
versionName rootProject.ext.rtVersionName

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

Expand Down

0 comments on commit 3c2ffa1

Please sign in to comment.