added project setup instructions
This commit is contained in:
parent
073de89362
commit
3af37951fc
2 changed files with 9 additions and 1 deletions
|
@ -27,10 +27,13 @@ If time permits, I intend to eventually add these:
|
|||
- support: Android R
|
||||
- subsampling/tiling
|
||||
|
||||
## Known issues
|
||||
## Known Issues
|
||||
- privacy: cannot opt out of Crashlytics reporting (cf [flutterfire issue #1143](https://github.com/FirebaseExtended/flutterfire/issues/1143))
|
||||
- gesture: double tap on image does not zoom on tapped area (cf [photo_view issue #82](https://github.com/renancaraujo/photo_view/issues/82))
|
||||
- performance: image info page stutters the first time it loads a Google Maps view (cf [flutter issue #28493](https://github.com/flutter/flutter/issues/28493))
|
||||
- performance: image decoding is slow
|
||||
|
||||
## Project Setup
|
||||
Create a file named `<app dir>/android/key.properties`. It should contain a reference to a keystore for app signing, and other necessary credentials. See `<app dir>/android/key_template.properties` for the expected keys.
|
||||
|
||||
[Aves logo]: https://github.com/deckerst/aves/blob/master/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
|
||||
|
|
5
android/key_template.properties
Normal file
5
android/key_template.properties
Normal file
|
@ -0,0 +1,5 @@
|
|||
storeFile=<KEYSTORE_PATH>
|
||||
storePassword=<KEYSTORE_PASSWORD>
|
||||
keyAlias=<KEY_ALIAS>
|
||||
keyPassword=<KEY_PASSWORD>
|
||||
googleApiKey=<GOOGLE_API_KEY>
|
Loading…
Reference in a new issue