Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
4ccad1e8
Commit
4ccad1e8
authored
Aug 23, 2017
by
Filipe de Lima Brito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update app/build.gradle
Sets up the debug and release buildType.
parent
98f165b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
build.gradle
app/build.gradle
+14
-1
No files found.
app/build.gradle
View file @
4ccad1e8
...
@@ -62,7 +62,16 @@ android {
...
@@ -62,7 +62,16 @@ android {
}
}
buildTypes
{
buildTypes
{
debug
{
debuggable
true
versionNameSuffix
'-DEBUG'
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
signingConfig
signingConfigs
.
debug
}
release
{
release
{
debuggable
false
minifyEnabled
false
minifyEnabled
false
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
signingConfig
signingConfigs
.
release
signingConfig
signingConfigs
.
release
...
@@ -84,11 +93,15 @@ android {
...
@@ -84,11 +93,15 @@ android {
//avoiding okio error: https://github.com/square/okhttp/issues/896
//avoiding okio error: https://github.com/square/okhttp/issues/896
lintConfig
file
(
"lint.xml"
)
lintConfig
file
(
"lint.xml"
)
}
}
sourceSets
{
sourceSets
{
debug
{
debug
{
manifest
.
srcFile
'src/debug/AndroidManifest.xml'
manifest
.
srcFile
'src/debug/AndroidManifest.xml'
}
}
release
{
manifest
.
srcFile
'src/release/AndroidManifest.xml'
}
}
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment