AndroidAppUpdateLibrary
Android App Update Library can be used for downloading the Apk from a
link , Save it to External or Internal Storage, Than automatic
installing the apk. Remember to add provider xml and android runtime
permission before using this library. See sample use in app folder.
Usage
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.Piashsarker:AndroidAppUpdateLibrary:1.0.2'
}
Step 3. Add Runtime Permission
Remember to add below permission in
Manifest.xml file . And Also add runtime permission for (Version => Marshmallow ). See the sample app.
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Step 4. Add Provider XML
Create a folder called
xml in
res folder. Create a xml file and named it
provider_paths. Paste below code:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>
Add below code in your
manifest.xml file.
<application
..............
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>
Step 5. For downloading and installing the apk automatically.
After setting up all neccessary files it's just two line of code to download and install the apk updates in your device.
String url = "http://androidpala.com/tutorial/app-debug.apk";
DownloadApk downloadApk = new DownloadApk(MainActivity.this);
downloadApk.startDownloadingApk(url);
You are Good To Go. Happy Coding
Comments
Post a Comment