Skip to content

Commit

Permalink
Merge pull request #346 from astubenbord/feature/notes
Browse files Browse the repository at this point in the history
Feature: Notes and bugfixes
  • Loading branch information
astubenbord authored Jan 6, 2024
2 parents 51d3b58 + ee6a753 commit d7080d0
Show file tree
Hide file tree
Showing 80 changed files with 3,745 additions and 739 deletions.
14 changes: 13 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
android:requestLegacyExternalStorage="true"
>
>
<activity
android:name=".MainActivity"
android:exported="true"
Expand Down Expand Up @@ -135,6 +135,7 @@
android:mimeType="application/vnd.openxmlformats-officedocument.presentationml.presentation" />
</intent-filter>


<!-- .xls -->
<intent-filter>
<action android:name="android.intent.action.SEND" />
Expand Down Expand Up @@ -162,11 +163,22 @@
</intent-filter>
<!-- END Snippet from https://github.com/qcasey/paperless_share -->


</activity>
<!-- Don't delete the meta-data below. This is used by the Flutter tool to generate
GeneratedPluginRegistrant.java -->
<meta-data android:name="flutterEmbedding" android:value="2" />
</application>

<queries>
<intent>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
</intent>
</queries>


<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
Expand Down
3 changes: 3 additions & 0 deletions android/fastlane/metadata/android/de-DE/changelogs/4043.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Neues Feature: Notizen
- Neue Sprache: Italienisch
- Mehere Fehlerbehebungen
3 changes: 3 additions & 0 deletions android/fastlane/metadata/android/en-US/changelogs/4043.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- New feature: Notes
- New language: Italian
- Multiple bugfixes
8 changes: 8 additions & 0 deletions build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
targets:
$default:
builders:
mockito|mockBuilder:
generate_for:
- lib/**.dart
- test/**.dart
- integration_test/**.dart
Loading

0 comments on commit d7080d0

Please sign in to comment.