Start implementing automatic builds

This commit is contained in:
Roland Geider
2021-04-20 20:13:36 +02:00
parent 98981b0c68
commit 9bc7b9856c
12 changed files with 90 additions and 9 deletions

View File

@@ -27,14 +27,14 @@ apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
// Keys for the android play store
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('app/key.properties')
def keystorePropertiesFile = rootProject.file('fastlane/envfiles/key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
// Key for wger.de REST API
def wgerProperties = new Properties()
def localMapsPropertiesFile = rootProject.file('app/wger.properties')
def localMapsPropertiesFile = rootProject.file('fastlane/envfiles/wger.properties')
if (localMapsPropertiesFile.exists()) {
project.logger.info('Load maps properties from local file')
localMapsPropertiesFile.withReader('UTF-8') { reader ->

View File

@@ -7,6 +7,12 @@
FlutterApplication and put your custom class here. -->
<uses-permission android:name="android.permission.INTERNET"/>
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="false"
android:xlargeScreens="false"/>
<application
android:name="io.flutter.app.FlutterApplication"
android:label="wger"