ฉันสนใจที่จะรู้ว่าเป็นไปได้หรือไม่ที่จะติดตั้ง apk ที่ดาวน์โหลดแบบไดนามิกจากแอปพลิเคชัน Android ที่กำหนดเองโดยทางโปรแกรม
ฉันสนใจที่จะรู้ว่าเป็นไปได้หรือไม่ที่จะติดตั้ง apk ที่ดาวน์โหลดแบบไดนามิกจากแอปพลิเคชัน Android ที่กำหนดเองโดยทางโปรแกรม
คำตอบ:
คุณสามารถเปิดลิงค์ Play สโตร์หรือพรอมต์การติดตั้งได้อย่างง่ายดาย:
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.parse("content:///path/to/your.apk"),
"application/vnd.android.package-archive");
startActivity(promptInstall);
หรือ
Intent goToMarket = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("https://play.google.com/store/apps/details?id=com.package.name"));
startActivity(goToMarket);
แต่คุณไม่สามารถติดตั้งได้โดยไม่ต้อง .apks ของผู้ใช้ที่ได้รับอนุญาตอย่างชัดเจน ; ไม่เว้นแต่ว่าอุปกรณ์และโปรแกรมของคุณจะถูกรูท
/sdcard
เนื่องจากมันผิดใน Android 2.2+ และอุปกรณ์อื่น ๆ ใช้Environment.getExternalStorageDirectory()
แทน
File file = new File(dir, "App.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
ฉันมีปัญหาเดียวกันและหลังจากพยายามมาหลายครั้ง ฉันไม่รู้ว่าทำไม แต่การตั้งค่าข้อมูลและพิมพ์แยกความผิดของฉัน
setData()
จะทำให้พารามิเตอร์ประเภทจะถูกลบออก คุณต้องใช้setDataAndType()
ถ้าคุณต้องการให้ค่าทั้งคู่ ที่นี่: developer.android.com/reference/android/content/…
การแก้ปัญหาที่มีให้สำหรับคำถามนี้ใช้ได้กับtargetSdkVersion
ข้อ 23 และต่ำกว่าทั้งหมด สำหรับ Android N เช่น API ระดับ 24 ขึ้นไปจะไม่ทำงานและล้มเหลวด้วยข้อยกเว้นต่อไปนี้:
android.os.FileUriExposedException: file:///storage/emulated/0/... exposed beyond app through Intent.getData()
นี่คือความจริงที่ว่าเริ่มต้นจาก Android 24, Uri
สำหรับการจัดการกับไฟล์ที่ดาวน์โหลดมีการเปลี่ยนแปลง ตัวอย่างเช่นไฟล์การติดตั้งชื่อที่appName.apk
เก็บไว้ในระบบไฟล์ภายนอกหลักของแอพที่มีชื่อแพ็คเกจcom.example.test
จะเป็น
file:///storage/emulated/0/Android/data/com.example.test/files/appName.apk
สำหรับAPI 23
และด้านล่างในขณะที่บางสิ่งบางอย่างที่ชอบ
content://com.example.test.authorityStr/pathName/Android/data/com.example.test/files/appName.apk
สำหรับAPI 24
และเหนือ
รายละเอียดเพิ่มเติมเกี่ยวกับเรื่องนี้สามารถพบได้ที่นี่และฉันจะไม่ผ่านมันไป
เพื่อตอบคำถามtargetSdkVersion
ของ24
และเหนือต้องทำตามขั้นตอนเหล่านี้: เพิ่มต่อไปนี้เพื่อ AndroidManifest.xml:
<application
android:allowBackup="true"
android:label="@string/app_name">
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.authorityStr"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/paths"/>
</provider>
</application>
2. เพิ่มpaths.xml
ไฟล์ต่อไปนี้ในxml
โฟลเดอร์res
ใน src, main:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="pathName"
path="pathValue"/>
</paths>
pathName
คือการที่แสดงในตัวอย่างที่เป็นแบบอย่าง URI เนื้อหาข้างต้นและpathValue
เป็นเส้นทางที่เกิดขึ้นจริงในระบบ เป็นความคิดที่ดีที่จะใส่ "." (ไม่ต้องใส่เครื่องหมายอัญประกาศ) สำหรับ pathValue ข้างต้นหากคุณไม่ต้องการเพิ่มไดเรกทอรีย่อยพิเศษใด ๆ
เขียนรหัสต่อไปนี้เพื่อติดตั้ง apk ด้วยชื่อappName.apk
บนระบบไฟล์ภายนอกหลัก:
File directory = context.getExternalFilesDir(null);
File file = new File(directory, fileName);
Uri fileUri = Uri.fromFile(file);
if (Build.VERSION.SDK_INT >= 24) {
fileUri = FileProvider.getUriForFile(context, context.getPackageName(),
file);
}
Intent intent = new Intent(Intent.ACTION_VIEW, fileUri);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
intent.setDataAndType(fileUri, "application/vnd.android" + ".package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
context.startActivity(intent);
activity.finish();
ไม่จำเป็นต้องได้รับอนุญาตเมื่อเขียนไปยังไดเรกทอรีส่วนตัวของแอปของคุณเองบนระบบไฟล์ภายนอก
ฉันได้เขียนไลบรารี AutoUpdate ที่นี่ซึ่งฉันได้ใช้ข้างต้น
.authorityStr
หลังจากcontext.getPackageName()
นั้นควรทำงาน
ฉันขุดลึกลงไปและพบแหล่งที่มาของแอปพลิเคชัน PackageInstaller จากแหล่ง Android
https://github.com/android/platform_packages_apps_packageinstaller
จากรายการฉันพบว่าต้องได้รับอนุญาต:
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
และกระบวนการติดตั้งจริงเกิดขึ้นหลังจากการยืนยัน
Intent newIntent = new Intent();
newIntent.putExtra(PackageUtil.INTENT_ATTR_APPLICATION_INFO, mPkgInfo.applicationInfo);
newIntent.setData(mPackageURI);
newIntent.setClass(this, InstallAppProgress.class);
String installerPackageName = getIntent().getStringExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME);
if (installerPackageName != null) {
newIntent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME, installerPackageName);
}
startActivity(newIntent);
ฉันแค่ต้องการแบ่งปันความจริงที่ว่าไฟล์ apk ของฉันถูกบันทึกลงในไดเรกทอรี "ข้อมูล" ของแอปและฉันจำเป็นต้องเปลี่ยนการอนุญาตในไฟล์ apk เพื่อให้สามารถอ่านได้ทั่วโลกเพื่อให้สามารถติดตั้งได้ด้วยวิธีอื่นมิฉะนั้นระบบ กำลังขว้าง "ข้อผิดพลาดในการแยกวิเคราะห์: มีปัญหาในการแยกวิเคราะห์แพ็คเกจ"; ดังนั้นการใช้โซลูชันจาก @Horaceman ที่ทำให้:
File file = new File(dir, "App.apk");
file.setReadable(true, false);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
สิ่งนี้สามารถช่วยผู้อื่นได้มาก!
ครั้งแรก:
private static final String APP_DIR = Environment.getExternalStorageDirectory().getAbsolutePath() + "/MyAppFolderInStorage/";
private void install() {
File file = new File(APP_DIR + fileName);
if (file.exists()) {
Intent intent = new Intent(Intent.ACTION_VIEW);
String type = "application/vnd.android.package-archive";
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Uri downloadedApk = FileProvider.getUriForFile(getContext(), "ir.greencode", file);
intent.setDataAndType(downloadedApk, type);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
} else {
intent.setDataAndType(Uri.fromFile(file), type);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}
getContext().startActivity(intent);
} else {
Toast.makeText(getContext(), "ّFile not found!", Toast.LENGTH_SHORT).show();
}
}
ประการที่สอง:สำหรับ Android 7 ขึ้นไปคุณควรกำหนดผู้ให้บริการในรายการด้านล่าง!
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="ir.greencode"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/paths" />
</provider>
ที่สาม:กำหนด path.xml ในโฟลเดอร์ res / xml เหมือนด้านล่าง! ฉันใช้เส้นทางนี้สำหรับการจัดเก็บข้อมูลภายในหากคุณต้องการเปลี่ยนเป็นอย่างอื่นมีวิธีไม่กี่! คุณสามารถไปที่ลิงค์นี้: FileProvider
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="your_folder_name" path="MyAppFolderInStorage/"/>
</paths>
มา:คุณควรเพิ่มการอนุญาตนี้ในรายการ:
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
อนุญาตให้แอปพลิเคชันร้องขอการติดตั้งแพ็กเกจ แอปที่กำหนดเป้าหมาย API ที่สูงกว่า 25 จะต้องมีสิทธิ์นี้เพื่อใช้งาน Intent.ACTION_INSTALL_PACKAGE
โปรดตรวจสอบให้แน่ใจว่าเจ้าหน้าที่ผู้ให้บริการเหมือนกัน!
โซลูชันอื่นที่ไม่ต้องใช้รหัสฮาร์ดแอพที่รับและปลอดภัยกว่า:
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData( Uri.fromFile(new File(pathToApk)) );
startActivity(intent);
ใช่มันเป็นไปได้ แต่สำหรับสิ่งที่คุณต้องการโทรศัพท์เพื่อติดตั้งแหล่งที่ไม่ได้รับการยืนยัน ตัวอย่างเช่น slideMe ทำเช่นนั้น ฉันคิดว่าสิ่งที่ดีที่สุดที่คุณสามารถทำได้คือการตรวจสอบว่ามีแอปพลิเคชันอยู่หรือไม่และส่งเจตนารมณ์สำหรับ Android Market คุณควรใช้รูปแบบ URL สำหรับ Android Market
market://details?id=package.name
ฉันไม่รู้วิธีเริ่มต้นกิจกรรมอย่างแน่นอน แต่ถ้าคุณเริ่มต้นกิจกรรมด้วย URL แบบนั้น ควรเปิดตลาด Android และให้ทางเลือกในการติดตั้งแอพ
มันน่าสังเกตว่าถ้าคุณใช้จะเตะออกการดาวน์โหลดของคุณให้แน่ใจว่าได้บันทึกไว้ไปยังสถานที่เช่นภายนอกDownloadManager
setDestinationInExternalFilesDir(c, null, "<your name here>).apk";
เจตนามีประเภทแพคเกจที่เก็บไม่ชอบcontent:
รูปแบบที่ใช้กับการดาวน์โหลดไปยังสถานที่ภายใน file:
แต่ไม่เหมือน (พยายามที่จะล้อมเส้นทางภายในเข้าไปในวัตถุไฟล์และจากนั้นรับเส้นทางไม่ทำงานอย่างใดอย่างหนึ่งแม้ว่ามันจะส่งผลในfile:
URL เพราะแอปจะไม่แยก apk; ดูเหมือนว่ามันจะต้องเป็นภายนอก)
ตัวอย่าง:
int uriIndex = cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_URI);
String downloadedPackageUriString = cursor.getString(uriIndex);
File mFile = new File(Uri.parse(downloadedPackageUriString).getPath());
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.fromFile(mFile), "application/vnd.android.package-archive")
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
appContext.startActivity(promptInstall);
อย่าลืมขอสิทธิ์:
android.Manifest.permission.WRITE_EXTERNAL_STORAGE
android.Manifest.permission.READ_EXTERNAL_STORAGE
เพิ่มใน AndroidManifest.xml ผู้ให้บริการและการอนุญาต:
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
...
<application>
...
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>
สร้างตัวให้บริการไฟล์ XML res / xml / provider_paths.xml
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="external"
path="." />
<external-files-path
name="external_files"
path="." />
<cache-path
name="cache"
path="." />
<external-cache-path
name="external_cache"
path="." />
<files-path
name="files"
path="." />
</paths>
ใช้โค้ดตัวอย่างด้านล่าง:
public class InstallManagerApk extends AppCompatActivity {
static final String NAME_APK_FILE = "some.apk";
public static final int REQUEST_INSTALL = 0;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// required permission:
// android.Manifest.permission.WRITE_EXTERNAL_STORAGE
// android.Manifest.permission.READ_EXTERNAL_STORAGE
installApk();
}
...
/**
* Install APK File
*/
private void installApk() {
try {
File filePath = Environment.getExternalStorageDirectory();// path to file apk
File file = new File(filePath, LoadManagerApkFile.NAME_APK_FILE);
Uri uri = getApkUri( file.getPath() ); // get Uri for each SDK Android
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData( uri );
intent.setFlags( Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_ACTIVITY_NEW_TASK );
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
intent.putExtra(Intent.EXTRA_RETURN_RESULT, true);
intent.putExtra(Intent.EXTRA_INSTALLER_PACKAGE_NAME, getApplicationInfo().packageName);
if ( getPackageManager().queryIntentActivities(intent, 0 ) != null ) {// checked on start Activity
startActivityForResult(intent, REQUEST_INSTALL);
} else {
throw new Exception("don`t start Activity.");
}
} catch ( Exception e ) {
Log.i(TAG + ":InstallApk", "Failed installl APK file", e);
Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_LONG)
.show();
}
}
/**
* Returns a Uri pointing to the APK to install.
*/
private Uri getApkUri(String path) {
// Before N, a MODE_WORLD_READABLE file could be passed via the ACTION_INSTALL_PACKAGE
// Intent. Since N, MODE_WORLD_READABLE files are forbidden, and a FileProvider is
// recommended.
boolean useFileProvider = Build.VERSION.SDK_INT >= Build.VERSION_CODES.N;
String tempFilename = "tmp.apk";
byte[] buffer = new byte[16384];
int fileMode = useFileProvider ? Context.MODE_PRIVATE : Context.MODE_WORLD_READABLE;
try (InputStream is = new FileInputStream(new File(path));
FileOutputStream fout = openFileOutput(tempFilename, fileMode)) {
int n;
while ((n = is.read(buffer)) >= 0) {
fout.write(buffer, 0, n);
}
} catch (IOException e) {
Log.i(TAG + ":getApkUri", "Failed to write temporary APK file", e);
}
if (useFileProvider) {
File toInstall = new File(this.getFilesDir(), tempFilename);
return FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID, toInstall);
} else {
return Uri.fromFile(getFileStreamPath(tempFilename));
}
}
/**
* Listener event on installation APK file
*/
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if(requestCode == REQUEST_INSTALL) {
if (resultCode == Activity.RESULT_OK) {
Toast.makeText(this,"Install succeeded!", Toast.LENGTH_SHORT).show();
} else if (resultCode == Activity.RESULT_CANCELED) {
Toast.makeText(this,"Install canceled!", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(this,"Install Failed!", Toast.LENGTH_SHORT).show();
}
}
}
...
}
ลองนี้
String filePath = cursor.getString(cursor.getColumnIndex(DownloadManager.COLUMN_LOCAL_FILENAME));
String title = filePath.substring( filePath.lastIndexOf('/')+1, filePath.length() );
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(filePath)), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // without this flag android returned a intent error!
MainActivity.this.startActivity(intent);
ก่อนอื่นให้เพิ่มบรรทัดต่อไปนี้ลงใน AndroidManifest.xml:
<uses-permission android:name="android.permission.INSTALL_PACKAGES"
tools:ignore="ProtectedPermissions" />
จากนั้นใช้รหัสต่อไปนี้เพื่อติดตั้ง apk:
File sdCard = Environment.getExternalStorageDirectory();
String fileStr = sdCard.getAbsolutePath() + "/MyApp";// + "app-release.apk";
File file = new File(fileStr, "TaghvimShamsi.apk");
Intent promptInstall = new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.fromFile(file),
"application/vnd.android.package-archive");
startActivity(promptInstall);
UpdateNodeมี API สำหรับ Android เพื่อติดตั้งแพ็กเกจ APK จากภายในแอพอื่น
คุณสามารถกำหนดการอัปเดตออนไลน์และรวม API ไว้ในแอพของคุณได้เลย
ขณะนี้ API อยู่ในสถานะเบต้า แต่คุณสามารถทำการทดสอบด้วยตัวเองได้แล้ว
นอกจากนั้น UpdateNode ยังเสนอข้อความที่แสดงว่าระบบมีประโยชน์มากหากคุณต้องการบอกบางสิ่งที่สำคัญกับผู้ใช้ของคุณ
ฉันเป็นส่วนหนึ่งของทีมพัฒนาไคลเอ็นต์และใช้งานฟังก์ชั่นข้อความอย่างน้อยสำหรับแอพ Android ของฉันเอง
ลองนี้ - เขียนในรายการ:
uses-permission android:name="android.permission.INSTALL_PACKAGES"
tools:ignore="ProtectedPermissions"
เขียนรหัส:
File sdCard = Environment.getExternalStorageDirectory();
String fileStr = sdCard.getAbsolutePath() + "/Download";// + "app-release.apk";
File file = new File(fileStr, "app-release.apk");
Intent promptInstall = new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.fromFile(file),
"application/vnd.android.package-archive");
startActivity(promptInstall);