Skip to content

Commit

Permalink
17/02/2023.
Browse files Browse the repository at this point in the history
  • Loading branch information
youndon committed Feb 17, 2023
1 parent 3ca5cbe commit d5fb545
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Cons {
const val TAG = "This"
const val NUL = "null"

const val APP_VERSION = "1.8.5"
const val APP_VERSION = "1.9.0"

const val NOTE_TABLE_NAME = "Notes"
const val DATABASE_NAME = "JetNoteDatabase"
Expand Down
4 changes: 2 additions & 2 deletions mobile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
applicationId = "city.zouitel.jetnote"
minSdk = 25
targetSdk = 33
versionCode = 185
versionName = "1.8.5"
versionCode = 190
versionName = "1.9.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
16 changes: 5 additions & 11 deletions mobile/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,17 @@
<data android:mimeType="text/plain" />
</intent-filter>
<!--Sending simple data to this app by shareSheet-->
<intent-filter>
<action android:name="com.google.android.gm.action.AUTO_SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
<!-- <intent-filter>-->
<!-- <action android:name="com.google.android.gm.action.AUTO_SEND" />-->
<!-- <category android:name="android.intent.category.DEFAULT" />-->
<!-- <data android:mimeType="text/plain" />-->
<!-- </intent-filter>-->
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/*"/>
</intent-filter>

</activity>

</application>
Expand Down

0 comments on commit d5fb545

Please sign in to comment.