Compare commits

..

No commits in common. "a1dd4055a3664e1981433337435a08f4cb5efe2e" and "06c521b1753a67153077aa096146afbb658b6a2d" have entirely different histories.

2 changed files with 1 additions and 8 deletions

2
Jenkinsfile vendored
View File

@ -35,7 +35,7 @@ pipeline {
sh 'flutter doctor' sh 'flutter doctor'
sh 'GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/var/run/ssh/known_hosts.gitea.valuya.com" flutter pub get' sh 'GIT_SSH_COMMAND="ssh -o UserKnownHostsFile=/var/run/ssh/known_hosts.gitea.valuya.com" flutter pub get'
sh 'flutter clean' sh 'flutter clean'
sh 'APP_TITLE="$APP_TITLE" APP_URI="$APP_URI" APP_COLOR="$APP_COLOR" BUILDMODE="$BUILD_MODE" ./tools/jenkins-build-android.sh' sh 'APP_TITLE="$APP_TITLE" APP_URI="$APP_URI" APP_COLOR="$APP_COLOR" BUILDMODE="$BUILD_MODEs" ./tools/jenkins-build-android.sh'
stash(name: 'outputs', includes: 'build/app/outputs/**') stash(name: 'outputs', includes: 'build/app/outputs/**')
} }
} }

View File

@ -21,13 +21,6 @@ if (flutterVersionName == null) {
flutterVersionName = '1.0' flutterVersionName = '1.0'
} }
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"