Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Mobile App
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
Mobile App
Commits
0b8d743e
Commit
0b8d743e
authored
5 years ago
by
Markin Igor
Browse files
Options
Downloads
Patches
Plain Diff
Update package name and add key store.
parent
58a0c4b1
No related branches found
Branches containing commit
No related tags found
1 merge request
!1
Mobile app initial implementation.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
android/app/build.gradle
+16
-1
16 additions, 1 deletion
android/app/build.gradle
with
17 additions
and
1 deletion
.gitignore
+
1
−
0
View file @
0b8d743e
...
...
@@ -36,6 +36,7 @@
**/android/gradlew
**/android/gradlew.bat
**/android/local.properties
**/android/key.properties
**/android/**/GeneratedPluginRegistrant.java
# iOS/XCode related
...
...
This diff is collapsed.
Click to expand it.
android/app/build.gradle
+
16
−
1
View file @
0b8d743e
...
...
@@ -24,6 +24,12 @@ if (flutterVersionName == null) {
apply
plugin:
'com.android.application'
apply
from:
"$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def
keystoreProperties
=
new
Properties
()
def
keystorePropertiesFile
=
rootProject
.
file
(
'key.properties'
)
if
(
keystorePropertiesFile
.
exists
())
{
keystoreProperties
.
load
(
new
FileInputStream
(
keystorePropertiesFile
))
}
android
{
compileSdkVersion
28
...
...
@@ -41,6 +47,15 @@ android {
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
signingConfigs
{
release
{
keyAlias
keystoreProperties
[
'keyAlias'
]
keyPassword
keystoreProperties
[
'keyPassword'
]
storeFile
file
(
keystoreProperties
[
'storeFile'
])
storePassword
keystoreProperties
[
'storePassword'
]
}
}
buildTypes
{
release
{
// TODO: Add your own signing config for the release build.
...
...
@@ -54,7 +69,7 @@ android {
productFlavors
{
development
{
dimension
"flavor-type"
applicationIdSuffix
".dev"
applicationIdSuffix
".dev
elopment
"
versionNameSuffix
"-dev"
manifestPlaceholders
=
[
appLabel:
"Vereign-dev"
]
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment