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-app-updater

v1.0.3

Published

app本地代码升级器,安卓直接下载,苹果跳转苹果商店

Downloads

14

Readme

react-native-updater

Getting started

$ npm install react-native-app-updater --save

Mostly automatic installation

$ react-native link react-native-app-updater

Manual installation

Android

  1. Open up android/app/src/main/java/[...]/MainApplication.java
  • Add import cn.cnlee.commons.updater.RNUpdaterPackage; to the imports at the top of the file
  • Add new RNUpdaterPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-app-updater'
    project(':react-native-app-updater').projectDir = new File(rootProject.projectDir, 	'../node_modules/react-native-app-updater/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-app-updater')

Usage

使用说明

import {CheckUpdate, Tools} from 'react-native-app-updater';

// 检测版本更新方法
CheckUpdate(
    {
        updateUrl: "https://raw.githubusercontent.com/WVector/AppUpdateDemo/master/apk/sample-debug.apk",
        versionName: '10.00',
        updateContent: "1,添加删除信用卡接口。\r\n2,添加vip认证。\r\n3,区分自定义消费,一个小时不限制。\r\n4,添加放弃任务接口,小时内不生成。\r\n5,消费任务手动生成。",
        size: '10M',
        forceDialog: false,//强制弹窗提醒
        update: true,//是否更新
        forced: false,//强制更新
        ignore: false,//是否显示忽略此版本
        hideProgressBar: true,//下载时是否隐藏进度条
        md5: '60e2c3ab8bb4c078438f654e39c7b6a0'//新apk的MD5
    });

//检测通知是否打开
Tools.checkNotifyEnabled().then((enabled) => {
    //enabled true表示允许通知,false表示通知未打开
});

//跳转到通知设置页面
Tools.openNotifySetting();