Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
531
Issue boards
Milestones
Wiki
Code
Merge requests
14
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
b52b3351
Commit
b52b3351
authored
7 years ago
by
Geoffrey Métais
Browse files
Options
Downloads
Patches
Plain Diff
Do not sign CLI release builds
parent
935eaf48
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
compile.sh
+1
-1
1 addition, 1 deletion
compile.sh
vlc-android/build.gradle
+4
-9
4 additions, 9 deletions
vlc-android/build.gradle
with
5 additions
and
10 deletions
compile.sh
+
1
−
1
View file @
b52b3351
...
...
@@ -229,7 +229,7 @@ else
ACTION
=
"assemble"
fi
TARGET
=
"
${
ACTION
}${
PLATFORM
}${
GRADLE_ABI
}${
BUILDTYPE
}
"
PASSWORD_KEYSTORE
=
"
$PASSWORD_KEYSTORE
"
./gradlew
$TARGET
CLI
=
"
"
./gradlew
$TARGET
fi
#######
...
...
This diff is collapsed.
Click to expand it.
vlc-android/build.gradle
+
4
−
9
View file @
b52b3351
...
...
@@ -61,7 +61,7 @@ android {
}
//Set the build ABI according to build types only if not launched from compile.sh
if
(
System
.
getenv
(
'
PASSWORD_KEYSTORE
'
)
==
null
)
if
(
System
.
getenv
(
'
CLI
'
)
==
null
)
tasks
.
whenTaskAdded
{
task
->
if
(
task
.
name
.
startsWith
(
'assemble'
))
{
if
(
task
.
name
.
endsWith
(
'ARMv7Debug'
))
...
...
@@ -92,19 +92,14 @@ android {
*/
storeFile
file
(
keyStoreFile
)
keyAlias
storealias
if
(
System
.
getenv
(
'PASSWORD_KEYSTORE'
)
!=
null
&&
!
System
.
getenv
(
'PASSWORD_KEYSTORE'
).
isEmpty
()){
storePassword
=
System
.
getenv
(
'PASSWORD_KEYSTORE'
)
keyPassword
=
System
.
getenv
(
'PASSWORD_KEYSTORE'
)
}
else
{
storePassword
storepwd
keyPassword
storepwd
}
storePassword
storepwd
keyPassword
storepwd
}
}
buildTypes
{
release
{
signingConfig
signingConfigs
.
release
signingConfig
System
.
getenv
(
'CLI'
)
!=
null
?
null
:
signingConfigs
.
release
minifyEnabled
true
shrinkResources
false
proguardFile
'proguard.cfg'
...
...
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