Merge branch 'master' into Enzo

pull/1/head
Enzo 2 years ago
commit 49e3151f7b

@ -0,0 +1,34 @@
kind: pipeline
type: docker
name: SmartFit_Mobile
trigger:
event:
- push
branch:
- master
steps:
- name: build-apk
image: ghcr.io/cirruslabs/flutter:3.13.9
commands:
- flutter build apk
- sfm_apk=sfm_$(date +"%Y_%m_%d_%H_%M_%S").apk
- cp ./build/app/outputs/flutter-apk/app-release.apk $sfm_apk
- curl -F "file=@$sfm_apk" https://anonfiles.me/api/v1/upload > upload.json
- cat upload.json | cut -d '"' -f 12
- name: code-analysis
image: ghcr.io/cirruslabs/flutter:3.13.9
environment:
SONAR_TOKEN:
from_secret: sonar_token
commands:
- export SONAR_SCANNER_VERSION=5.0.1.3006
- export SONAR_SCANNER_HOME=$HOME/.sonar/sonar-scanner-$SONAR_SCANNER_VERSION-linux
- curl --create-dirs -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-$SONAR_SCANNER_VERSION-linux.zip
- unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
- export PATH=$SONAR_SCANNER_HOME/bin:$PATH
- export SONAR_SCANNER_OPTS="-server"
- sonar-scanner -D sonar.projectKey=SmartFit_Mobile -D sonar.sources=. -D sonar.host.url=https://codefirst.iut.uca.fr/sonar -D sonar.login=$${SONAR_TOKEN}
depends_on: [ build-apk ]

@ -47,7 +47,8 @@ android {
// You can update the following values to match your application needs. // You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
//minSdkVersion flutter.minSdkVersion //minSdkVersion flutter.minSdkVersion
minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger() //# minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
minSdkVersion = 21
//minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger() //minSdkVersion localProperties.getProperty('flutter.minSdkVersion').toInteger()
targetSdkVersion flutter.targetSdkVersion targetSdkVersion flutter.targetSdkVersion
//argetSdkVersion localProperties.getProperty('flutter.targetSdkVersion').toInteger() //argetSdkVersion localProperties.getProperty('flutter.targetSdkVersion').toInteger()

Loading…
Cancel
Save