This is an Android app where people can sign in and answer fun trivia questions!.
Clone this repository and import into Android Studio
[email protected]:adc2/fa19-cs242-project.git
Create app/keystore.gradle
with the following info:
ext.key_alias='...'
ext.key_password='...'
ext.store_password='...'
And place both keystores under app/keystores/
directory:
playstore.keystore
stage.keystore
- Open Android Studio and select
File->Open...
or from the Android Launcher selectImport project (Eclipse ADT, Gradle, etc.)
and navigate to the root directory of your project. - Select the directory or drill in and select the file
build.gradle
in the cloned repo. - Click 'OK' to open the the project in Android Studio.
- A Gradle sync should start, but you can force a sync and build the 'app' module as needed.
- Build the APK:
./gradlew build
Connect an Android device to your development machine.
- Select
Run -> Run 'app'
(orDebug 'app'
) from the menu bar - Select the device you wish to run the app on and click 'OK'
- Install the debug APK on your device
./gradlew installDebug