2017-07-28 25 views
0

質問:Android Nにapksをインストールしようとすると失敗します。 この部分はエラー情報です。Android NでAndroidインストールapkエラー

java.lang.NullPointerExceptionが仮想メソッド 「android.content.res.XmlResourceParser android.content.pm.ProviderInfo.loadXmlMetaData(android.content.pm.PackageManager、 れるjava.langを起動しようとしています。 android.support.v4.content.FileProvider.getPathStrategyでandroid.support.v4.content.FileProvider.parsePathStrategy(FileProvider.java:583) におけるNULLオブジェクト参照 上の列)」(FileProvider.java:557) at
android.support.v4.content.FileProvider.getUr me.hades.androidsafer.utils.SystemUtils.installApk(SystemUtils.java:51)でiForFile(FileProvider.java:399) でme.hades.androidsafer.utils.SystemUtils.installApk(SystemUtils.java:59) com.liulishuo.filedownloaderで me.hades.androidsafer.activity.SplashActivity $ 2.completed(SplashActivity.java:154) でcom.liulishuo.filedownloader.FileDownloadMessenger.handoverMessage(FileDownloadMessenger.java:341) で 。 FileDownloadMessageStation $ UIHandlerCallback.dispose(FileDownloadMessageStation.java:169) at com.liuでandroid.os.Looper.loop(Looper.java:154) でandroid.os.Handler.dispatchMessage(Handler.java:98) でlishuo.filedownloader.FileDownloadMessageStation $ UIHandlerCallback.handleMessage(FileDownloadMessageStation.java:160) android.app.ActivityThread.main(ActivityThread.java:6077) at java.lang.reflect.Method.invoke(ネイティブメソッド) at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java: com.android.internal.os.ZygoteInit.main(ZygoteInit.java:755)

における865) このPアートは、たManifest.xml

<provider 
      android:name="android.support.v4.content.FileProvider" 
      android:authorities="me.hades.androidsafer.fileprovider" 
      android:exported="false" 
      android:grantUriPermissions="true"> 

      <meta-data 
       android:name="android.support.FILE_PROVIDER_PATHS" 
       android:resource="@xml/file_paths"/> 

    </provider> 

この部分は、XML/file_paths.xml @である

<?xml version="1.0" encoding="utf-8"?> 
<paths> 

    <external-path path="Download/" name="Download" /> 
    <external-files-path name="Download" path="Download/" /> 
</paths> 

installApk()関数:

public static void installApk(Context context,File file) { 
     Intent intent = new Intent(Intent.ACTION_VIEW); 

     if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { 
      intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); 
      Uri contentUri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileProvider", file); 
      intent.setDataAndType(contentUri, "application/vnd.android.package-archive"); 
     } else { 
      intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive"); 
      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 
     } 
     context.startActivity(intent); 
    } 

私はこのエラーを修正するためにはどうすればよいですか? 私の英語はよくありません。考えてください

+0

'context'がnullのようです。 –

答えて

0

これをチェックしてくださいQuestionあなたに役立つかもしれません。ファイルプロバイダに問題があります。

+1

ありがとう、試してみる –

0

私は最近、その問題を持っていた、そして最終的に私はそれが次のコードで動作するようになった:Intent.ACTION_INSTALL_PACKAGEを:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { 
        Uri apkUri = FileProvider.getUriForFile(activity, BuildConfig.APPLICATION_ID + ".provider", file); 
        Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE); 
        intent.setData(apkUri); 
        intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); 
        activity.startActivity(intent); 
       } 

を使用してみてください。

私はそれがあなたを助けてくれることを願っています。

関連する問題