Skip to content

Commit 087e449

Browse files
committed
Fixed export of OFX format
Updated versions for 1.2.6.beta2 release
1 parent 0e9014e commit 087e449

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717

1818
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
1919
package="org.gnucash.android"
20-
android:versionCode="17"
21-
android:versionName="1.2.6.beta" >
20+
android:versionCode="18"
21+
android:versionName="1.2.6.beta2" >
2222

2323
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15"/>
2424

app/src/org/gnucash/android/export/ExportDialogFragment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public void onRadioButtonClicked(View view){
201201
case R.id.radio_qif_format:
202202
mExportFormat = ExportFormat.QIF;
203203
}
204-
mFilePath = buildExportFilename(mExportFormat);
204+
mFilePath = getActivity().getExternalFilesDir(null) + "/" + buildExportFilename(mExportFormat);
205205
return;
206206
}
207207

0 commit comments

Comments
 (0)