-
Notifications
You must be signed in to change notification settings - Fork 538
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
320 changed files
with
4,791 additions
and
4,650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,5 @@ Lei Xiao Bao <[email protected]> | |
Yongxin Wang <[email protected]> | ||
Matthew Hague <[email protected]> | ||
Spanti Nicola <[email protected]> | ||
Jesse Shieh <[email protected]> | ||
Jesse Shieh <[email protected]> | ||
Àlex Magaz Graça <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
208 changes: 104 additions & 104 deletions
208
app/AndroidManifest.xml → app/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,105 +1,105 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (c) 2012 Ngewi Fet <[email protected]> | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.gnucash.android" | ||
android:versionCode="46" | ||
android:versionName="@string/app_version_name" > | ||
|
||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="16"/> | ||
|
||
<permission-group | ||
android:name="org.gnucash.android.permission.group.GNUCASH" | ||
android:label="@string/label_permission_group" | ||
android:description="@string/description_permission_group" /> | ||
|
||
<permission android:name="org.gnucash.android.permission.CREATE_ACCOUNT" | ||
android:label="@string/label_permission_create_account" | ||
android:permissionGroup="org.gnucash.android.permission.group.GNUCASH" | ||
android:protectionLevel="dangerous" /> | ||
<permission android:name="org.gnucash.android.permission.RECORD_TRANSACTION" | ||
android:label="@string/label_permission_record_transaction" | ||
android:permissionGroup="org.gnucash.android.permission.group.GNUCASH" | ||
android:protectionLevel="dangerous" /> | ||
|
||
<uses-permission android:label="@string/label_permission_record_transactions" | ||
android:name="org.gnucash.android.permission.RECORD_TRANSACTION" /> | ||
<uses-permission android:label="@string/label_permission_create_accounts" | ||
android:name="org.gnucash.android.permission.CREATE_ACCOUNT" /> | ||
<uses-permission android:label="@string/permission_access_sdcard" | ||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
|
||
<application android:name="org.gnucash.android.app.GnuCashApplication" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/Theme.Sherlock.Light.DarkActionBar"> | ||
<activity | ||
android:name=".ui.account.AccountsActivity" | ||
android:label="@string/app_name"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".ui.passcode.PasscodeLockScreenActivity" | ||
android:noHistory="true" | ||
android:windowSoftInputMode="stateAlwaysHidden"> | ||
</activity> | ||
<activity android:name=".ui.settings.SettingsActivity"/> | ||
<activity android:name=".ui.passcode.PasscodePreferenceActivity" /> | ||
<activity android:name=".ui.transaction.TransactionsActivity" | ||
android:configChanges="orientation|screenSize"> | ||
</activity> | ||
<activity android:name=".ui.widget.WidgetConfigurationActivity" | ||
android:label="@string/label_widget_configuration" | ||
android:theme="@style/Dialog.WidgetConfiguration" | ||
android:excludeFromRecents="true"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> | ||
</intent-filter> | ||
</activity> | ||
<receiver android:name=".receivers.TransactionRecorder" | ||
android:label="Records transactions received through intents" | ||
android:permission="org.gnucash.android.permission.RECORD_TRANSACTION"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.INSERT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:mimeType="vnd.android.cursor.item/vnd.org.gnucash.android.transaction"/> | ||
</intent-filter> | ||
</receiver> | ||
<receiver android:name=".receivers.AccountCreator" | ||
android:label="Creates new accounts" | ||
android:permission="org.gnucash.android.permission.CREATE_ACCOUNT" | ||
android:enabled="true" android:exported="true"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.INSERT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:mimeType="vnd.android.cursor.item/vnd.org.gnucash.android.account"/> | ||
</intent-filter> | ||
</receiver> | ||
<receiver android:name=".receivers.TransactionAppWidgetProvider" > | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
</intent-filter> | ||
<meta-data android:name="android.appwidget.provider" | ||
android:resource="@xml/transaction_appwidget_info" /> | ||
</receiver> | ||
|
||
</application> | ||
|
||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (c) 2012 Ngewi Fet <[email protected]> | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
|
||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.gnucash.android" | ||
android:versionCode="47" | ||
android:versionName="@string/app_version_name" > | ||
|
||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="18"/> | ||
|
||
<permission-group | ||
android:name="org.gnucash.android.permission.group.GNUCASH" | ||
android:label="@string/label_permission_group" | ||
android:description="@string/description_permission_group" /> | ||
|
||
<permission android:name="org.gnucash.android.permission.CREATE_ACCOUNT" | ||
android:label="@string/label_permission_create_account" | ||
android:permissionGroup="org.gnucash.android.permission.group.GNUCASH" | ||
android:protectionLevel="dangerous" /> | ||
<permission android:name="org.gnucash.android.permission.RECORD_TRANSACTION" | ||
android:label="@string/label_permission_record_transaction" | ||
android:permissionGroup="org.gnucash.android.permission.group.GNUCASH" | ||
android:protectionLevel="dangerous" /> | ||
|
||
<uses-permission android:label="@string/label_permission_record_transactions" | ||
android:name="org.gnucash.android.permission.RECORD_TRANSACTION" /> | ||
<uses-permission android:label="@string/label_permission_create_accounts" | ||
android:name="org.gnucash.android.permission.CREATE_ACCOUNT" /> | ||
<uses-permission android:label="@string/permission_access_sdcard" | ||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
|
||
<application android:name="org.gnucash.android.app.GnuCashApplication" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/Theme.Sherlock.Light.DarkActionBar"> | ||
<activity | ||
android:name=".ui.account.AccountsActivity" | ||
android:label="@string/app_name"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".ui.passcode.PasscodeLockScreenActivity" | ||
android:noHistory="true" | ||
android:windowSoftInputMode="stateAlwaysHidden"> | ||
</activity> | ||
<activity android:name=".ui.settings.SettingsActivity"/> | ||
<activity android:name=".ui.passcode.PasscodePreferenceActivity" /> | ||
<activity android:name=".ui.transaction.TransactionsActivity" | ||
android:configChanges="orientation|screenSize"> | ||
</activity> | ||
<activity android:name=".ui.widget.WidgetConfigurationActivity" | ||
android:label="@string/label_widget_configuration" | ||
android:theme="@style/Dialog.WidgetConfiguration" | ||
android:excludeFromRecents="true"> | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/> | ||
</intent-filter> | ||
</activity> | ||
<receiver android:name=".receivers.TransactionRecorder" | ||
android:label="Records transactions received through intents" | ||
android:permission="org.gnucash.android.permission.RECORD_TRANSACTION"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.INSERT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:mimeType="vnd.android.cursor.item/vnd.org.gnucash.android.transaction"/> | ||
</intent-filter> | ||
</receiver> | ||
<receiver android:name=".receivers.AccountCreator" | ||
android:label="Creates new accounts" | ||
android:permission="org.gnucash.android.permission.CREATE_ACCOUNT" | ||
android:enabled="true" android:exported="true"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.INSERT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:mimeType="vnd.android.cursor.item/vnd.org.gnucash.android.account"/> | ||
</intent-filter> | ||
</receiver> | ||
<receiver android:name=".receivers.TransactionAppWidgetProvider" > | ||
<intent-filter> | ||
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> | ||
</intent-filter> | ||
<meta-data android:name="android.appwidget.provider" | ||
android:resource="@xml/transaction_appwidget_info" /> | ||
</receiver> | ||
|
||
</application> | ||
|
||
</manifest> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.