Browse Source

Save file to thumb folder on Android

Hau Vo 7 years ago
parent
commit
dfdb04dd56
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      android/src/main/java/com/reactlibrary/RNThumbnailModule.java
  2. 1
    1
      package.json

+ 1
- 1
android/src/main/java/com/reactlibrary/RNThumbnailModule.java View File

@@ -41,7 +41,7 @@ public class RNThumbnailModule extends ReactContextBaseJavaModule {
41 41
     retriever.setDataSource(filePath);
42 42
     Bitmap image = retriever.getFrameAtTime(1000000, MediaMetadataRetriever.OPTION_CLOSEST_SYNC);
43 43
 
44
-    String fullPath = Environment.getExternalStorageDirectory().getAbsolutePath();
44
+    String fullPath = Environment.getExternalStorageDirectory().getAbsolutePath() + '/thumb';
45 45
 
46 46
     try {
47 47
       File dir = new File(fullPath);

+ 1
- 1
package.json View File

@@ -1,7 +1,7 @@
1 1
 
2 2
 {
3 3
   "name": "react-native-thumbnail",
4
-  "version": "1.0.4",
4
+  "version": "1.0.5",
5 5
   "description": "",
6 6
   "main": "index.js",
7 7
   "scripts": {