Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- IntelliJ
- NPM
- Java
- R
- window
- Express
- vaadin
- SSL
- MSSQL
- Eclipse
- react
- Spring
- mapreduce
- tomcat
- 보조정렬
- SQL
- xPlatform
- SPC
- Kotlin
- hadoop
- Android
- plugin
- table
- 공정능력
- Python
- JavaScript
- GIT
- Sqoop
- es6
- mybatis
Archives
- Today
- Total
DBILITY
android downloded apk file version check and install 본문
반응형
res/xml/path.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="external_files"
path="." />
</paths>
AndroidManifest.xml
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
......
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/path" />
</provider>
//출처를 알 수 없는 앱 설치 권한
if (!getPackageManager().canRequestPackageInstalls()) {
Intent intent = new Intent(Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES);
intent.setData(Uri.parse(String.format("package:%s", getPackageName())));
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}
}
//build.gradle
buildConfigField("String", "APP_DOWN_FULL_PATH", '"http://........../app-debug.apk"')
//java code
private String apkFile = BuildConfig.APP_DOWN_FULL_PATH.substring(BuildConfig.APP_DOWN_FULL_PATH.lastIndexOf("/") + 1);
private String outputFilePath = this.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS.concat("/app/").concat(apkFile)).toString();
File file = new File(outputFilePath);
Uri apkUri = FileProvider.getUriForFile(LoginActivity.this, BuildConfig.APPLICATION_ID + ".provider", file);
PackageInfo packageInfo = getPackageManager().getPackageArchiveInfo(outputFilePath, 0);
String downloadVersion = (packageInfo.versionName + "" + packageInfo.getLongVersionCode()).replace(".", "");
String currentVersion = BuildConfig.VERSION_NAME.replace(".", "").concat(String.valueOf(BuildConfig.VERSION_CODE));
if (downloadVersion.compareTo(currentVersion) > 0) {
if (DEBUG) {
Log.e(TAG, "UPDATE");
}
Intent intent = new Intent(Intent.ACTION_VIEW);
//intent.setDataAndType(apkUri, "application/vnd.android.package-archive");
intent.setData(apkUri);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
startActivity(intent);
finish();
}
반응형
'android > java' 카테고리의 다른 글
java @SuppressWarnings (0) | 2024.05.23 |
---|---|
android ANR, Thread, Handler, runOnUiThread, View Handler, AsyncTask, RxJava, Callback Interface (0) | 2024.05.23 |
android progress bar color change programmatic (0) | 2024.05.08 |
WindowMetrics 화면 크기 등 (0) | 2024.05.04 |
android shortcut (0) | 2024.05.02 |
Comments