2015-05-03 18 views

risposta

15

Supponendo che si desidera inviare il proprio app .apk, è abbastanza semplice:

// Get current ApplicationInfo to find .apk path 
ApplicationInfo app = getApplicationContext().getApplicationInfo(); 
String filePath = app.sourceDir; 

Intent intent = new Intent(Intent.ACTION_SEND); 

// MIME of .apk is "application/vnd.android.package-archive". 
// but Bluetooth does not accept this. Let's use "*/*" instead. 
intent.setType("*/*"); 

// Only use Bluetooth to send .apk 
intent.setPackage("com.android.bluetooth"); 

// Append file and send Intent 
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(filePath))); 
startActivity(Intent.createChooser(intent, "Share app")); 
+2

Grazie è molto utile :) –

+0

Ciao, il problema è che anche tutti i file di database e cache vengono inviati. Vorrei mandare solo un file apk senza catturare i file. –

+1

No, i database non vengono inviati. Altrimenti questo sarebbe un buco di sicurezza in Android – ByteHamster

Problemi correlati