Skip to content

Commit

Permalink
misc fixes and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielcoderX authored and markpash committed Feb 23, 2024
1 parent 6e6c129 commit a6ad2bb
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 17 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "org.bepass.oblivion"
minSdk 21
targetSdk 34
versionCode 10
versionName "1.9"
versionCode 11
versionName "1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand All @@ -22,7 +22,8 @@ android {

buildTypes {
release {
minifyEnabled false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES" />
<category android:name="android.intent.category.LAUNCHER" />
<!-- <category android:name="android.intent.category.LAUNCHER" />-->
</intent-filter>
</activity>
<activity
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
android:fontFamily="@font/shabnam"
android:textColor="@color/black"
android:gravity="center"
android:text="App Version: 0.0.9-test" />
android:text="App Version: 1" />


</LinearLayout>
25 changes: 13 additions & 12 deletions app/src/main/res/layout/edit_sheet.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,19 @@
android:textSize="18sp" />

<EditText
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_marginHorizontal="16dp"
android:layout_marginTop="12dp"
android:padding="12dp"
android:background="@drawable/edittext_back"
android:fontFamily="@font/shabnam"
android:lineSpacingExtra="4dp"
android:textAlignment="center"
android:textColor="@color/black"
android:textSize="15sp" />
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_marginHorizontal="16dp"
android:layout_marginTop="12dp"
android:background="@drawable/edittext_back"
android:fontFamily="@font/shabnam"
android:lineSpacingExtra="4dp"
android:padding="12dp"
android:singleLine="true"
android:textAlignment="center"
android:textColor="@color/black"
android:textSize="15sp" />

<LinearLayout
android:layout_width="match_parent"
Expand Down

0 comments on commit a6ad2bb

Please sign in to comment.