react-native-yiyi-clear-cache

1.0.2 • Public • Published

react-native-yiyi-clear-cache

react native 清除缓存第三方库 Mou icon1

导出方法

  • getCacheSize - 获取缓存大小
    • @callBack - Function - 回调函数
      • @cacheSize - String - 缓存大小
      • @unit - String - 缓存大小单位(B KB MB G)

  • runClearCache - 清除缓存
    • @callBack - Function - 回调函数

使用实例

import clear from 'react-native-clear-cache-lcm';

constructor () {
    super();
    this.state = {
      cacheSize:"",
      unit:"",
    }
    clear.getCacheSize((value,unit)=>{
      this.setState({
        cacheSize:value, //缓存大小
        unit:unit  //缓存单位
      })
    });
    
  }
  
  render() {
    return (
      <View style={{flex: 1,justifyContent: 'center',alignItems: 'center'}}>
        <Text style={{fontSize: 20,textAlign: 'center',margin: 10}}>
          缓存大小{this.state.cacheSize}{this.state.unit}
        </Text>
        <Button title="清除缓存" onPress={this.clearCache.bind(this)}/>
      </View>
    );
  }
  
  clearCache(){

    clear.runClearCache(()=>{

      console.log("清除成功");

    clear.getCacheSize((value,unit)=>{
      this.setState({
        cacheSize:value, //缓存大小
        unit:unit  //缓存单位
      })
    });
      
    });

  }

使用方法

npm i react-native-yiyi-clear-cache

自动配置

react-native 0.6以下执行此命令

react-native link

手动配置

android配置

  1. 设置 android/setting.gradle

    ...
    
    include ':reactNativeClearCache'
    project(':reactNativeClearCache').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-clear-cache-lcm/android')
    
    
  2. 设置 android/app/build.gradle

    ...
    dependencies {
        ...
        compile project(':reactNativeClearCache')
    }
    
  3. 注册模块 (到 MainApplication.java)

    import com.zzliaoyuan.firefish.react_native_clear_cache.ClearCachePackage;
    
    public class MainApplication extends Application implements ReactApplication {
      ......
    
        @Override
    	protected List<ReactPackage> getPackages() {
      		return Arrays.<ReactPackage>asList(
          			new MainReactPackage(),
          			new new ClearCachePackage()      //<--- 添加
      		);
    	} 
    
      ......
    
    }
    

ios配置

  1. 右键 Libraries 选择Add Files To "项目名" 进入../node_modules/react-native-clear-cache-lcm/ios/目录 选择RCTClearCacheModule.xcodeproj 添加

  2. 在项目Build Phases下的Link Binary With Libraries 下 添加libRCTClearCacheModule.a库文件

Package Sidebar

Install

npm i react-native-yiyi-clear-cache

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

1.07 MB

Total Files

195

Last publish

Collaborators

  • jiaoren