Adobe Flex アプリケーションの一部として、フレックス コードから生成されたファイルを使用して添付ファイル付きの電子メールを送信できるようにするための Android ネイティブ拡張機能を作成しています。ただし、機密データが含まれている可能性があるため、ファイルを誰でも読み取り可能にしたくありません。したがって、アプリの内部ストレージ領域/キャッシュ内からファイルを送信したいと考えています。インテントを使用して他のアプリ (Gmail など) と通信し、メールを送信しています。
いくつかの調査を行った後、FileProvidersの機能がまさに私が望んでいることを実行する必要があることを発見しました。ただし、静的メソッドFileProvider.getUriForFile()は、ネイティブ拡張をサイレントに失敗/クラッシュさせます。ネイティブ拡張機能は停止し、エラーや LogCat からの出力なしで null を返します。
文字列を解析して Uri を手動で作成すると、Gmail はメールにファイルを添付できないと不平を言い、メールは添付ファイルなしで送信されます。
FREObject call() のコード:
//... (Deal with params from flex app) ...
//Setup Intent, and attach email data send from flex application:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("message/rfc822");
intent.putExtra(Intent.EXTRA_EMAIL, toArray);
intent.putExtra(Intent.EXTRA_CC, ccArray);
intent.putExtra(Intent.EXTRA_BCC, bccArray);
intent.putExtra(Intent.EXTRA_SUBJECT, subject);
intent.putExtra(Intent.EXTRA_TEXT, message);
Log.d("emaildebug", filePath);
//Check we can read our email attachment from flex app
//filePath is a temporary cache location.
File appFile = new File(filePath);
if (appFile.exists() && appFile.canRead()) {
Log.d("emaildebug", "file successfully read");
} else {
return null;
}
//Get a handle on the android Context instead of FREContext.
Context androidContext = (Context) context.getActivity();
//Get the location of the root files directory.
File attachPath = androidContext.getFilesDir();
File attachFile = new File(attachPath, "attachment.pdf");
//Copy file to root of files directory, so that our FileProvider can access it.
try {
copyFileUsingChannel(appFile, attachFile);
} catch (Exception e) {
Log.d("emaildebug", e.getMessage());
}
Log.d("emaildebug", "attachFile exists: " + attachFile.exists() );
Log.d("emaildebug", "attachFile path: " + attachFile.getAbsolutePath());
//This line will silently crash the native extension, instantly returning null, even in try catch.
//Uri contentUri = FileProvider.getUriForFile(androidContext, "com.example.androidextensiontest.provider", attachFile);
//Therefore manually create the Uri from a string.
Uri contentUri = Uri.parse("content://com.example.androidextensiontest.provider/files/attachment.pdf");
Log.d("emaildebug", "uri created");
Log.d("emaildebug", contentUri.toString());
//Grant permisions for all apps that can handle given intent
//Courtesy of: http://stackoverflow.com/questions/18249007/how-to-use-support-fileprovider-for-sharing-content-to-other-apps
List<ResolveInfo> resInfoList = androidContext.getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo resolveInfo : resInfoList) {
String packageName = resolveInfo.activityInfo.packageName;
Log.d("emaildebug", "package: " + packageName);
androidContext.grantUriPermission(packageName, contentUri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.putExtra(Intent.EXTRA_STREAM, contentUri);
context.getActivity().startActivity(Intent.createChooser(intent, "Send mail using..."));
マニフェスト ファイル:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.example.androidextensiontest.provider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/my_paths" />
</provider>
my_paths.xml で:
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="files" path="." />
</paths>
LogCat 出力:
11-01 10:58:09.971: D/emaildebug(17013): /data/data/air.com.example.MyAppName.debug/cache/FlashTmp.V17013/attachment.pdf
11-01 10:58:09.971: D/emaildebug(17013): file successfully read
11-01 10:58:09.991: D/emaildebug(17013): attachFile exists: true
11-01 10:58:09.991: D/emaildebug(17013): attachFile path: /data/data/air.com.example.MyAppName.debug/files/attachment.pdf
11-01 10:58:09.991: D/emaildebug(17013): uri created
11-01 10:58:09.991: D/emaildebug(17013): content://com.example.androidextensiontest.provider/files/attachment.pdf
11-01 10:58:09.991: D/emaildebug(17013): package: com.android.email
11-01 10:58:09.991: D/emaildebug(17013): package: com.google.android.gm
file:// Uri を使用して外部ストレージからファイルを送信しようとすると、添付ファイルは完全に機能します。ただし、前述のように、添付ファイルには機密データが含まれている可能性があるため、外部ストレージの使用は避けたいと考えています。
私が見ていると信じているのは、FileProviders がネイティブ拡張機能内で機能しないということです。ContentProvider も使用してみましたが、Constructor メソッドも onCreate メソッドも呼び出されませんでした。
ContentProvider マニフェスト:
<provider
android:name="com.example.androidextensiontest.provider.MyContentProvider"
android:authorities="com.example.androidextensiontest.provider">
</provider>
マイコンテンツプロバイダー:
public class MyContentProvider extends ContentProvider implements PipeDataWriter<InputStream> {
public MyContentProvider() {
// Never Output
Log.d("emaildebug", "Constructor");
}
@Override
public boolean onCreate() {
// Never Output
Log.d("emaildebug", "OnCreate");
return false;
}
//.. Rest of class
}
何か間違ったことをしているのですか、それとも ContentProviders / FileProviders が flex ネイティブ拡張内でサポートされていないだけですか? または、内部ストレージにあるファイルを電子メールに添付するための他のソリューションはありますか。SO と Google で検索しても、特に FileProvider.getUriForFile() に関して、同様の経験をした人は他にいません。ヘルプ/コメントをいただければ幸いです。
テキストの壁で申し訳ありません。これまでに試したこと、および何が機能し、何が機能しないかをすべて記録したかったのです。
tldr; ContentProviders / File Providers はフレックス ネイティブ拡張機能で動作しますか? 内部ファイルを電子メールの添付ファイルとして送信する他の方法はありますか?