Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2022-08-29 12:15:47 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bd7bc7b7ad87b1eae9450b1094022060ead85e06
bd7bc7b7
1 parent
111c25ae
gradle fixes
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
warply_android_sdk/build.gradle
warply_android_sdk/build.gradle
View file @
bd7bc7b
...
...
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
ext
{
PUBLISH_GROUP_ID
=
'ly.warp'
PUBLISH_VERSION
=
'4.5.4-cosbeta4
7
'
PUBLISH_VERSION
=
'4.5.4-cosbeta4
8
'
PUBLISH_ARTIFACT_ID
=
'warply-android-sdk'
}
...
...
@@ -18,13 +18,22 @@ android {
targetSdkVersion
31
consumerProguardFiles
'proguard-rules.pro'
}
splits
{
abi
{
reset
()
enable
false
universalApk
false
// If true, also generate a universal APK
include
"armeabi-v7a"
,
"x86"
,
"arm64-v8a"
,
"x86_64"
}
}
lintOptions
{
abortOnError
false
}
buildTypes
{
release
{
minifyEnabled
false
minifyEnabled
true
shrinkResources
true
proguardFiles
getDefaultProguardFile
(
'proguard-android.txt'
),
'proguard-rules.pro'
}
}
...
...
Please
register
or
login
to post a comment