https://github.com/sheitak/prototype-android
Android project prototype develop with java
https://github.com/sheitak/prototype-android
android android-application android-development android-project-tutorial android-studio java java-8 mobile
Last synced: 2 months ago
JSON representation
Android project prototype develop with java
- Host: GitHub
- URL: https://github.com/sheitak/prototype-android
- Owner: Sheitak
- Created: 2021-06-04T15:26:39.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-03T07:49:44.000Z (almost 4 years ago)
- Last Synced: 2025-01-21T06:26:17.707Z (4 months ago)
- Topics: android, android-application, android-development, android-project-tutorial, android-studio, java, java-8, mobile
- Language: Java
- Homepage:
- Size: 291 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Android Prototype Application
This is an example Android Application README to show briefly the sections your app README should contain.
## Installation
Clone this repository and import into **Android Studio**
```bash
git clone .git
```## Configuration
### Keystores:
Create `app/keystore.gradle` with the following info:
```gradle
ext.key_alias='...'
ext.key_password='...'
ext.store_password='...'
```
And place both keystores under `app/keystores/` directory:
- `playstore.keystore`
- `stage.keystore`## Build variants
Use the Android Studio *Build Variants* button to choose between **production** and **staging** flavors combined with debug and release build types## Generating signed APK
From Android Studio :
1. ***Build*** menu
2. ***Generate Signed APK...***
3. Fill in the keystore information *( you only need to do this once manually and then let Android Studio remember it )*## Maintainers
This project is mantained by :
* [Quentin Moreau](http://github.com/Sheitak)## Contributing
1. Fork it
2. Create your feature branch `git checkout -b my-new-feature`
3. Commit your changes `git commit -m 'Add some feature'`
4. Push your branch `git push origin my-new-feature`
5. Create a new Pull Request