provider crashes when installing apk [duplicate]










0















This question already has an answer here:



  • What is a NullPointerException, and how do I fix it?

    12 answers



I want to install an apk programmatically on Android 7. As I searched I have to use provider for that, but the app keeps crashing. I will be thankful if anyone could tell me why.



Android manifest: (inside application tag)



 <provider
android:name=".GenericFileProvider"
android:authorities="com.hamed.demo"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>


code to install:



Intent install = new Intent(Intent.ACTION_VIEW);
install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
install.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// the following line crashes
Uri apkUri = FileProvider.getUriForFile(AppsList.this,
BuildConfig.APPLICATION_ID + ".provider", file);
install.setDataAndType(apkUri, downloadManager[0].getMimeTypeForDownloadedFile(downloadId));
startActivity(install);


provider_path.xml in res/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>


and my GenericFileProvider class is exatly form here



But when it reaches the line I added comment on, app crashes and I face this error:



E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.hamed.demo, PID: 13090
java.lang.RuntimeException: Error receiving broadcast Intent act=android.intent.action.DOWNLOAD_COMPLETE flg=0x10000011 pkg=com.hamed.demo (has extras) in com.hamed.demo.AppsList$6@ce55de9
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1153)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:241)
at android.app.ActivityThread.main(ActivityThread.java:6274)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.XmlResourceParser android.content.pm.PackageItemInfo.loadXmlMetaData(android.content.pm.PackageManager, java.lang.String)' on a null object reference
at android.support.v4.content.FileProvider.parsePathStrategy(FileProvider.java:584)
at android.support.v4.content.FileProvider.getPathStrategy(FileProvider.java:558)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:400)
at com.hamed.demo.AppsList$6.onReceive(AppsList.java:217)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1143)
at android.os.Handler.handleCallback(Handler.java:751) 
at android.os.Handler.dispatchMessage(Handler.java:95) 
at android.os.Looper.loop(Looper.java:241) 
at android.app.ActivityThread.main(ActivityThread.java:6274) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 


If that matters, the downloaded apk is located in downloads directory of internal storage of the device.



Thanks










share|improve this question















marked as duplicate by Fantômas android
Users with the  android badge can single-handedly close android questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 12 at 13:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • check this stackoverflow.com/questions/6813322/…
    – Pritesh Vishwakarma
    Nov 12 at 12:24















0















This question already has an answer here:



  • What is a NullPointerException, and how do I fix it?

    12 answers



I want to install an apk programmatically on Android 7. As I searched I have to use provider for that, but the app keeps crashing. I will be thankful if anyone could tell me why.



Android manifest: (inside application tag)



 <provider
android:name=".GenericFileProvider"
android:authorities="com.hamed.demo"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>


code to install:



Intent install = new Intent(Intent.ACTION_VIEW);
install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
install.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// the following line crashes
Uri apkUri = FileProvider.getUriForFile(AppsList.this,
BuildConfig.APPLICATION_ID + ".provider", file);
install.setDataAndType(apkUri, downloadManager[0].getMimeTypeForDownloadedFile(downloadId));
startActivity(install);


provider_path.xml in res/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>


and my GenericFileProvider class is exatly form here



But when it reaches the line I added comment on, app crashes and I face this error:



E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.hamed.demo, PID: 13090
java.lang.RuntimeException: Error receiving broadcast Intent act=android.intent.action.DOWNLOAD_COMPLETE flg=0x10000011 pkg=com.hamed.demo (has extras) in com.hamed.demo.AppsList$6@ce55de9
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1153)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:241)
at android.app.ActivityThread.main(ActivityThread.java:6274)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.XmlResourceParser android.content.pm.PackageItemInfo.loadXmlMetaData(android.content.pm.PackageManager, java.lang.String)' on a null object reference
at android.support.v4.content.FileProvider.parsePathStrategy(FileProvider.java:584)
at android.support.v4.content.FileProvider.getPathStrategy(FileProvider.java:558)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:400)
at com.hamed.demo.AppsList$6.onReceive(AppsList.java:217)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1143)
at android.os.Handler.handleCallback(Handler.java:751) 
at android.os.Handler.dispatchMessage(Handler.java:95) 
at android.os.Looper.loop(Looper.java:241) 
at android.app.ActivityThread.main(ActivityThread.java:6274) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 


If that matters, the downloaded apk is located in downloads directory of internal storage of the device.



Thanks










share|improve this question















marked as duplicate by Fantômas android
Users with the  android badge can single-handedly close android questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 12 at 13:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • check this stackoverflow.com/questions/6813322/…
    – Pritesh Vishwakarma
    Nov 12 at 12:24













0












0








0


1






This question already has an answer here:



  • What is a NullPointerException, and how do I fix it?

    12 answers



I want to install an apk programmatically on Android 7. As I searched I have to use provider for that, but the app keeps crashing. I will be thankful if anyone could tell me why.



Android manifest: (inside application tag)



 <provider
android:name=".GenericFileProvider"
android:authorities="com.hamed.demo"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>


code to install:



Intent install = new Intent(Intent.ACTION_VIEW);
install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
install.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// the following line crashes
Uri apkUri = FileProvider.getUriForFile(AppsList.this,
BuildConfig.APPLICATION_ID + ".provider", file);
install.setDataAndType(apkUri, downloadManager[0].getMimeTypeForDownloadedFile(downloadId));
startActivity(install);


provider_path.xml in res/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>


and my GenericFileProvider class is exatly form here



But when it reaches the line I added comment on, app crashes and I face this error:



E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.hamed.demo, PID: 13090
java.lang.RuntimeException: Error receiving broadcast Intent act=android.intent.action.DOWNLOAD_COMPLETE flg=0x10000011 pkg=com.hamed.demo (has extras) in com.hamed.demo.AppsList$6@ce55de9
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1153)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:241)
at android.app.ActivityThread.main(ActivityThread.java:6274)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.XmlResourceParser android.content.pm.PackageItemInfo.loadXmlMetaData(android.content.pm.PackageManager, java.lang.String)' on a null object reference
at android.support.v4.content.FileProvider.parsePathStrategy(FileProvider.java:584)
at android.support.v4.content.FileProvider.getPathStrategy(FileProvider.java:558)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:400)
at com.hamed.demo.AppsList$6.onReceive(AppsList.java:217)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1143)
at android.os.Handler.handleCallback(Handler.java:751) 
at android.os.Handler.dispatchMessage(Handler.java:95) 
at android.os.Looper.loop(Looper.java:241) 
at android.app.ActivityThread.main(ActivityThread.java:6274) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 


If that matters, the downloaded apk is located in downloads directory of internal storage of the device.



Thanks










share|improve this question
















This question already has an answer here:



  • What is a NullPointerException, and how do I fix it?

    12 answers



I want to install an apk programmatically on Android 7. As I searched I have to use provider for that, but the app keeps crashing. I will be thankful if anyone could tell me why.



Android manifest: (inside application tag)



 <provider
android:name=".GenericFileProvider"
android:authorities="com.hamed.demo"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>


code to install:



Intent install = new Intent(Intent.ACTION_VIEW);
install.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
install.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
// the following line crashes
Uri apkUri = FileProvider.getUriForFile(AppsList.this,
BuildConfig.APPLICATION_ID + ".provider", file);
install.setDataAndType(apkUri, downloadManager[0].getMimeTypeForDownloadedFile(downloadId));
startActivity(install);


provider_path.xml in res/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>


and my GenericFileProvider class is exatly form here



But when it reaches the line I added comment on, app crashes and I face this error:



E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.hamed.demo, PID: 13090
java.lang.RuntimeException: Error receiving broadcast Intent act=android.intent.action.DOWNLOAD_COMPLETE flg=0x10000011 pkg=com.hamed.demo (has extras) in com.hamed.demo.AppsList$6@ce55de9
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1153)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:241)
at android.app.ActivityThread.main(ActivityThread.java:6274)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.XmlResourceParser android.content.pm.PackageItemInfo.loadXmlMetaData(android.content.pm.PackageManager, java.lang.String)' on a null object reference
at android.support.v4.content.FileProvider.parsePathStrategy(FileProvider.java:584)
at android.support.v4.content.FileProvider.getPathStrategy(FileProvider.java:558)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:400)
at com.hamed.demo.AppsList$6.onReceive(AppsList.java:217)
at android.app.LoadedApk$ReceiverDispatcher$Args.run(LoadedApk.java:1143)
at android.os.Handler.handleCallback(Handler.java:751) 
at android.os.Handler.dispatchMessage(Handler.java:95) 
at android.os.Looper.loop(Looper.java:241) 
at android.app.ActivityThread.main(ActivityThread.java:6274) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 


If that matters, the downloaded apk is located in downloads directory of internal storage of the device.



Thanks





This question already has an answer here:



  • What is a NullPointerException, and how do I fix it?

    12 answers







android nullpointerexception android-install-apk android-fileprovider






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 13:45









Fantômas

32.3k156288




32.3k156288










asked Nov 12 at 12:13









hsbr13

599




599




marked as duplicate by Fantômas android
Users with the  android badge can single-handedly close android questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 12 at 13:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by Fantômas android
Users with the  android badge can single-handedly close android questions as duplicates and reopen them as needed.

StackExchange.ready(function()
if (StackExchange.options.isMobile) return;

$('.dupe-hammer-message-hover:not(.hover-bound)').each(function()
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');

$hover.hover(
function()
$hover.showInfoMessage('',
messageElement: $msg.clone().show(),
transient: false,
position: my: 'bottom left', at: 'top center', offsetTop: -7 ,
dismissable: false,
relativeToBody: true
);
,
function()
StackExchange.helpers.removeMessages();

);
);
);
Nov 12 at 13:45


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.













  • check this stackoverflow.com/questions/6813322/…
    – Pritesh Vishwakarma
    Nov 12 at 12:24
















  • check this stackoverflow.com/questions/6813322/…
    – Pritesh Vishwakarma
    Nov 12 at 12:24















check this stackoverflow.com/questions/6813322/…
– Pritesh Vishwakarma
Nov 12 at 12:24




check this stackoverflow.com/questions/6813322/…
– Pritesh Vishwakarma
Nov 12 at 12:24












1 Answer
1






active

oldest

votes


















1














Try to use this code



File file = new File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
"app.apk");

final Uri uri = Uri.fromFile(file);
final String AUTHORITY = "com.company.app.update.provider";

if (file.exists())
file.delete();

DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse("https://example.com/app.apk"));
request.setDestinationUri(uri);
downloadManager.enqueue(request);

final BroadcastReceiver onComplete = new BroadcastReceiver()

public void onReceive(Context context, Intent intent)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)

Uri contentUri = FileProvider.getUriForFile(context, AUTHORITY, file);
Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(contentUri, "application/vnd.android.package-archive")
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();

else

Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(uri, "application/vnd.android.package-archive")
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();


;

registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));





share|improve this answer




















  • Thanks..that worked perfectly
    – hsbr13
    Nov 12 at 15:19

















1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Try to use this code



File file = new File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
"app.apk");

final Uri uri = Uri.fromFile(file);
final String AUTHORITY = "com.company.app.update.provider";

if (file.exists())
file.delete();

DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse("https://example.com/app.apk"));
request.setDestinationUri(uri);
downloadManager.enqueue(request);

final BroadcastReceiver onComplete = new BroadcastReceiver()

public void onReceive(Context context, Intent intent)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)

Uri contentUri = FileProvider.getUriForFile(context, AUTHORITY, file);
Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(contentUri, "application/vnd.android.package-archive")
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();

else

Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(uri, "application/vnd.android.package-archive")
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();


;

registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));





share|improve this answer




















  • Thanks..that worked perfectly
    – hsbr13
    Nov 12 at 15:19















1














Try to use this code



File file = new File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
"app.apk");

final Uri uri = Uri.fromFile(file);
final String AUTHORITY = "com.company.app.update.provider";

if (file.exists())
file.delete();

DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse("https://example.com/app.apk"));
request.setDestinationUri(uri);
downloadManager.enqueue(request);

final BroadcastReceiver onComplete = new BroadcastReceiver()

public void onReceive(Context context, Intent intent)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)

Uri contentUri = FileProvider.getUriForFile(context, AUTHORITY, file);
Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(contentUri, "application/vnd.android.package-archive")
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();

else

Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(uri, "application/vnd.android.package-archive")
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();


;

registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));





share|improve this answer




















  • Thanks..that worked perfectly
    – hsbr13
    Nov 12 at 15:19













1












1








1






Try to use this code



File file = new File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
"app.apk");

final Uri uri = Uri.fromFile(file);
final String AUTHORITY = "com.company.app.update.provider";

if (file.exists())
file.delete();

DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse("https://example.com/app.apk"));
request.setDestinationUri(uri);
downloadManager.enqueue(request);

final BroadcastReceiver onComplete = new BroadcastReceiver()

public void onReceive(Context context, Intent intent)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)

Uri contentUri = FileProvider.getUriForFile(context, AUTHORITY, file);
Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(contentUri, "application/vnd.android.package-archive")
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();

else

Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(uri, "application/vnd.android.package-archive")
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();


;

registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));





share|improve this answer












Try to use this code



File file = new File(
Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS),
"app.apk");

final Uri uri = Uri.fromFile(file);
final String AUTHORITY = "com.company.app.update.provider";

if (file.exists())
file.delete();

DownloadManager downloadManager = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse("https://example.com/app.apk"));
request.setDestinationUri(uri);
downloadManager.enqueue(request);

final BroadcastReceiver onComplete = new BroadcastReceiver()

public void onReceive(Context context, Intent intent)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N)

Uri contentUri = FileProvider.getUriForFile(context, AUTHORITY, file);
Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(contentUri, "application/vnd.android.package-archive")
.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION)
.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();

else

Intent openFileIntent = new Intent(Intent.ACTION_VIEW)
.setDataAndType(uri, "application/vnd.android.package-archive")
.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(openFileIntent);
unregisterReceiver(this);
finish();


;

registerReceiver(onComplete, new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE));






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 12 at 12:21









Mikhail Sharin

487517




487517











  • Thanks..that worked perfectly
    – hsbr13
    Nov 12 at 15:19
















  • Thanks..that worked perfectly
    – hsbr13
    Nov 12 at 15:19















Thanks..that worked perfectly
– hsbr13
Nov 12 at 15:19




Thanks..that worked perfectly
– hsbr13
Nov 12 at 15:19



這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3