AppUpdate


Source link: https://github.com/fccaikai/AppUpdate

AppUpdate

????

android app update library

Screenshots

Usage

setup

  • Step 1. Add the JitPack repository to your build file

    Add it in your root build.gradle at the end of repositories:

    allprojects {
      repositories {
    
    ...
    maven {
     url 'https://jitpack.io' 
    }
      
    }
     
    }
    
  • Step 2. Add the dependency

    dependencies {
    
     compile 'com.github.fccaikai:AppUpdate:2.1.4'  
    }
    

usage

UpdateWrapper updateWrapper = new UpdateWrapper.Builder(getApplicationContext())

 //set interval Time

 .setTime(time)

 //set notification icon

 .setNotificationIcon(R.mipmap.ic_launcher_round)

 //set update file url

 .setUrl("you update json file url")

//set customs activity

.setCustomsActivity(cls)

 //set showToast. default is true

 .setIsShowToast(false)

//add callback ,return new version info

 .setCallback(new CheckUpdateTask.Callback() {

 @Override

 public void callBack(VersionModel model,booleab hasNewVersion) {

  Log.d(TAG,"new version :" +

model.getVersionName());

 
}

}
)

.build();
  updateWrapper.start();

The update json format?

{

"versionCode":1,
"versionName":"1.0.0",
"content":"1.add something#2.add something",//use # to wrap
"minSupport":1, //min support version. while your app versionCode less than  minSupport,You must update app
"url":"apk download url" 
}

Custom

  • create custome Activity

    create an activity extents UpdateActivity ,and Override protected Fragment getUpdateDialogFragment().like :

    public class CustomsUpdateActivity extends UpdateActivity {
    
      @Override
      protected Fragment getUpdateDialogFragment() {
    
    return CustomsUpdateFragment.newInstance(mModel);
    
      
    }
     
    }
    
  • set theme

    set Activity theme as Dialog to,in Androidmanifest.xml

    android:theme="@style/UpdateDialog"
    <activity
    
    android:name=".CustomsUpdateActivity"
    
      android:theme="@style/UpdateDialog"> </activity>

    ?

  • create custom FragmentDialog

    create a FragmentDialog extends UpdateDialog.like:

    public class CustomsUpdateFragment extends UpdateDialog {
    
    public static CustomsUpdateFragment newInstance(VersionModel model) {
    
     Bundle args = new Bundle();
    
    args.putSerializable(Constant.MODEL, model);
    
    CustomsUpdateFragment fragment = new CustomsUpdateFragment();
    
    fragment.setArguments(args);
    
    return fragment;
      
    }
    
    @Override
      protected int getLayout() {
    
    return R.layout.fragment_update_dialog;
      
    }
    
    @Override
      protected void setContent(View view, int contentId) {
    
    super.setContent(view, R.id.content);
    
      
    }
    
    @Override
      protected void bindUpdateListener(View view, int updateId) {
    
    super.bindUpdateListener(view, R.id.update);
    
      
    }
    
    @Override
      protected void bindCancelListener(View view, int cancelId) {
    
    super.bindCancelListener(view, R.id.cancel);
    
      
    }
    
    @Override
      protected void initIfMustUpdate(View view, int id) {
    
    super.initIfMustUpdate(view, R.id.cancel);
    
      
    }
     
    }
    
  • set Custom Activity

    UpdateWrapper.Builder builder = ...; builder.setCustomsActivity(CustomsUpdateActivity.class);
     ... builder.build().start();
    

    see the demo .

Library

  • v7-support

    compile 'com.android.support:appcompat-v7:25.2.0'

If you don't want to use,you can exclude it.

Resources

Android library for creating different tags for your content. Library uses TextView as a parent class. Example usages can be found in app module (folder).

Java library for forismatic.com API. It's a simple way to get the most inspirational quotes.

QuickReaderView allows to show splitted by words text in TextView based view with specified speed.

Simple way to filter your ListView or GridView content.

Easy SharedPreference Engine foR ANDROid.

This is a simple Android utils library to write any type of data into cache files and then read them later, using Gson to serialize and deserialize these data.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes