Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
528
Issue boards
Milestones
Wiki
Code
Merge requests
15
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
e30ff1d9
Commit
e30ff1d9
authored
8 years ago
by
Thomas Guillem
Browse files
Options
Downloads
Patches
Plain Diff
VLCInstance: fix lua copy path
parent
d9ad1897
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vlc-android/src/org/videolan/vlc/util/VLCInstance.java
+2
-2
2 additions, 2 deletions
vlc-android/src/org/videolan/vlc/util/VLCInstance.java
with
2 additions
and
2 deletions
vlc-android/src/org/videolan/vlc/util/VLCInstance.java
+
2
−
2
View file @
e30ff1d9
...
...
@@ -41,8 +41,8 @@ public class VLCInstance {
private
static
Runnable
sCopyLua
=
new
Runnable
()
{
@Override
public
void
run
()
{
String
destinationFolder
=
AndroidDevices
.
EXTERNAL_PUBLIC_DIRECTORY
+
"/Android/data/"
+
VLCApplication
.
getAppContext
().
getPackageName
()+
"
/lua"
;
final
String
destinationFolder
=
VLCApplication
.
getAppContext
().
getDir
(
"vlc"
,
Context
.
MODE_PRIVATE
).
getAbsolutePath
()
+
"/.share
/lua"
;
AssetManager
am
=
VLCApplication
.
getAppResources
().
getAssets
();
FileUtils
.
copyAssetFolder
(
am
,
"lua"
,
destinationFolder
);
}
...
...
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