Skip to content

Commit

Permalink
finalisation configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
dlamande committed Aug 16, 2023
1 parent b48f167 commit 787bb69
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
firebase appdistribution:distribute build/app/outputs/flutter-apk/app-staging-release.apk \
--token "$STAGING_FIREBASE_CI_TOKEN" \
--app "$STAGING_ANDROID_APP_ID" \
--groups agir-team
env:
STAGING_FIREBASE_CI_TOKEN: ${{ secrets.STAGING_FIREBASE_CI_TOKEN }}
STAGING_ANDROID_APP_ID: ${{ secrets.STAGING_ANDROID_APP_ID }}
2 changes: 2 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ android {
dimension "default"
applicationIdSuffix ".staging"
versionNameSuffix "-staging"
resValue "string", "app_name", "Agir ! (Staging)"

}
prod {
dimension "default"
Expand Down
4 changes: 3 additions & 1 deletion android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
<application android:label="Agir ! (Staging)">

</application>
</manifest>
3 changes: 2 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:label="Agir !"
android:label="@string/app_name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
Expand Down
3 changes: 3 additions & 0 deletions android/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
</resources>

0 comments on commit 787bb69

Please sign in to comment.