Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
VLC-Android
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
316
Issues
316
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
VLC-Android
Commits
1a386090
Commit
1a386090
authored
Feb 21, 2017
by
Geoffrey Métais
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add generateSources tasks for each module
parent
a60523d8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
0 deletions
+21
-0
api/build.gradle
api/build.gradle
+5
-0
libvlc/build.gradle
libvlc/build.gradle
+6
-0
medialibrary/build.gradle
medialibrary/build.gradle
+5
-0
vlc-android/build.gradle
vlc-android/build.gradle
+5
-0
No files found.
api/build.gradle
View file @
1a386090
...
...
@@ -39,6 +39,11 @@ android {
}
}
task
generateSources
(
type:
Jar
)
{
classifier
=
'sources'
from
android
.
sourceSets
.
main
.
java
.
srcDirs
}
dependencies
{
compile
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
compile
'com.android.support:appcompat-v7:25.1.1'
...
...
libvlc/build.gradle
View file @
1a386090
...
...
@@ -93,6 +93,12 @@ task buildDebugMIPS(type:BuildNative) {
task
buildDebugMIPS64
(
type:
BuildNative
)
{
args
(
'-a'
,
"mips64"
)
}
task
generateSources
(
type:
Jar
)
{
classifier
=
'sources'
from
android
.
sourceSets
.
main
.
java
.
srcDirs
}
dependencies
{
compile
'com.android.support:support-annotations:25.1.1'
}
medialibrary/build.gradle
View file @
1a386090
...
...
@@ -52,6 +52,11 @@ android {
}
}
task
generateSources
(
type:
Jar
)
{
classifier
=
'sources'
from
android
.
sourceSets
.
main
.
java
.
srcDirs
}
dependencies
{
compile
project
(
':libvlc'
)
compile
'com.android.support:support-v4:25.1.1'
...
...
vlc-android/build.gradle
View file @
1a386090
...
...
@@ -193,6 +193,11 @@ android {
}
}
task
generateSources
(
type:
Jar
)
{
classifier
=
'sources'
from
android
.
sourceSets
.
main
.
java
.
srcDirs
}
dependencies
{
compile
project
(
':libvlc'
)
compile
project
(
':medialibrary'
)
...
...
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