|
How to build IOSchedNote: while these instructions allow you to build iosched, much of the functionality that depends on server APIs won't work because in order to do that you need to configure your own project in Google Developer Console, create API keys, etc. For more information about what you need to set up, refer to Server side setup. To build the app: Install the following software: Run the Android SDK Manager by pressing the SDK Manager toolbar button in Android Studio or by running the 'android' command in a terminal window. In the Android SDK Manager, ensure that the following are installed, and are updated to the latest available version: - Tools > Android SDK Platform-tools (rev 20 or above)
- Tools > Android SDK Tools (rev 23.0.2 or above)
- Tools > Android SDK Build-tools version 20
- Tools > Android SDK Build-tools version 19.1
- Android 4.4 > SDK Platform (API 19)
- Android 4.4W > SDK Platform (API 20)
- Android L (API 20, L Preview)
- Extras > Android Support Repository
- Extras > Android Support Library
- Extras > Google Play services
- Extras > Google Repository
Create a file in your working directory called local.properties, containing the path to your Android SDK. Use local.properties.example as a model. Import the project in Android Studio: - Press File > Import Project
- Navigate to and choose the settings.gradle file in this project
- Press OK
Add your debug keystore to the project (save it as android/debug.keystore), or modify the build.gradle file to point to your key. Choose Build > Make Project in Android Studio or run the following command in the project root directory: ./gradlew clean assembleDebugTo install on your test device: ./gradlew installClassicDebug
|
|