npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-android-files

v1.0.0

Published

A react-native module which is used to pick, open, upload and download files.

Downloads

32

Readme

react-native-android-files

Getting Started

Installation

Using npm

$ npm install react-native-android-files --save

Using yarn

$ yarn add react-native-android-files

Linking

There are two options for linking:

1. Automatic

react-native link react-native-android-files

2. Manual

If the automatic linking fails for some reason, you can do the linking manually as follows:

  • add the following to yourAppName/android/settings.gradle file:
 include ':react-native-android-files'
 project(':react-native-android-files').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-android-files/android')
  • add the following inside the dependencies closure of yourAppName/android/app/build.gradle file:
 implementation project(':react-native-android-files')
  • add the following to your MainApplication.java file:
 import com.adfiles.files.FilesPackage;

and also,

 @Override
 protected List<ReactPackage> getPackages() {
   return Arrays.<ReactPackage>asList(
     new MainReactPackage(),
     ....
     new FilesPackage()                       <== Add this
   );
 }

Usage

To perform activities on with the module, first import the it to your app like so:

import { Files } from 'react-native-android-files';

After this, you can call any of the functions stated below as appropriate.

Functions

        open(String path)
        getPath()
        pick()
        download(String src, String dest)
        upload(String dest)

Permissions

No permission is required open a file picker dialog with getPath() function and to obtain the path of the selected file as a response. However, to download a file and to save it on the device with download() function, only the first configuration, i.e., adding the storage permission, is required. In addition, to open a file for a given path from the device with open() function or to pick a file from a dialog and to open it via pick() function, the following configurations should be made. For API level 23 and below devices, only the first configuration is required. For API level 24 and above, all the three configurations are mandatory. The third configuration can be changed according to official android documentation regarding FileProvider class.

  1. Add the following permission outside the application tage of the AndroidManifest.xml file.
        <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 
  1. Add the following provider tag within the application tag in the AndroidManifest.xml file.
      <provider
               android:name="android.support.v4.content.FileProvider"
               android:authorities="${applicationId}"
               android:exported="false"
               android:grantUriPermissions="true">
               <meta-data
                   android:name="android.support.FILE_PROVIDER_PATHS"
                   android:resource="@xml/provider_paths">
               </meta-data>
       </provider>
  1. Create a folder named xml inside yourAppName\android\app\src\main\res (if there isn't any) and create a file named provider_paths.xml inside the folder and add the following content in the file. As stated above, the contents of this file can be changed to meet your desired accessible file locations.
    <?xml version='1.0' encoding='utf-8'?>
        <paths xmlns:android="http://schemas.android.com/apk/res/android">
            <root-path name="root" path=""/>
            <files-path name="files" path="/" />
            <external-files-path name="external_files" path="" />
            <external-path name="external" path="." />
            <cache-path name="cache" path="/" />
        </paths>

Description

 open(String path):

Sample code snippet
            import { Files } from 'react-native-android-files';
            ....
            ....

            _openFile = () => {
                const path = "/storage/emulated/0/DCIM/Camera/myPic.jpg";
                Files.open(path).catch((err) => {
                    console.log("error");
                });
            } 

 getPath():

Sample code snippet
            import { Files } from 'react-native-android-files';
            ....
            ....

            _getFilePath = () => {
                Files.getPath().then((path) => {
                    console.log(path);
                }).catch((err) => {
                    console.log(err);
                });
            } 
Sample result
                "file:///storage/emulated/0/Download/myfile.mp4"

 pick():

Sample code snippet
            import { Files } from 'react-native-android-files';
            ....
            ....

            _openFileFromPicker = () => {
                 Files.pick().catch((err) => {
                    console.log(err);
                 });
            } 

 download(String src, String dest):

Sample code snippet
            import { Files } from 'react-native-android-files';
            ....
            ....

            _downloadFile = () => {
                const src = "http://www.mywebservice.com/download/myVideo.mp4",
                      dest = "/storage/emulated/0/videos/";
                Files.download(src, dest).catch((err) => {
                    console.log(err);
                });
            } 

 upload(String dest):

Sample code snippet
            _uploadFile = () => {
                const dest = "http://www.mywebservice.com/upload";
                Files.upload(dest).catch((err) => {
                    console.log(err);
                });
            } 
Sample result

Issues or suggestions?

If you have any issues or if you want to suggest something , you can write it here.

Additional info

This is a component of a more comprehensive react-native-system-applications module developed by the same author.