We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e9014e commit 087e449Copy full SHA for 087e449
2 files changed
app/AndroidManifest.xml
@@ -17,8 +17,8 @@
17
18
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19
package="org.gnucash.android"
20
- android:versionCode="17"
21
- android:versionName="1.2.6.beta" >
+ android:versionCode="18"
+ android:versionName="1.2.6.beta2" >
22
23
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15"/>
24
app/src/org/gnucash/android/export/ExportDialogFragment.java
@@ -201,7 +201,7 @@ public void onRadioButtonClicked(View view){
201
case R.id.radio_qif_format:
202
mExportFormat = ExportFormat.QIF;
203
}
204
- mFilePath = buildExportFilename(mExportFormat);
+ mFilePath = getActivity().getExternalFilesDir(null) + "/" + buildExportFilename(mExportFormat);
205
return;
206
207
0 commit comments