APP自动更新软件

AndroidManifest.xml在标签上加入

            android:name="androidx.core.content.FileProvider"

            android:authorities="com.example.myapplication.fileprovider"

            android:exported="false"

            android:grantUriPermissions="true">

           

                android:name="android.support.FILE_PROVIDER_PATHS"

                android:resource="@xml/filepath" />

       

在app\src\main\res\xml中加入文件filepath.xml

   

   

   

   

   

你可能感兴趣的:(APP自动更新软件)