Skip to content

Commit

Permalink
NEW App targets Android 13 (API level 33) or higher
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Aug 20, 2023
1 parent 9b8ce55 commit 18bc83f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
5 changes: 4 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ English DoliDroid ChangeLog

***** ChangeLog for 3.0 *****

3.0-b57
3.0-b58
- NEW Hide Basic auth pass found into URLs
- NEW App targets Android 13 (API level 33) or higher

3.0-b57
- NEW Add a page to manage favorites connections. Can remove one or all connections.
- Test to support for Google OAUTH2 openid connect to avoid to leave DoliDroid (support disabled by Google).

Expand Down
6 changes: 2 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
//buildToolsVersion '30.0.2'

// API Level
// 16=4.1 17=4.2 19=4.4.2
// 21=5.0.0 22=5.1.1 23=6.0.0 (android M, need permission requests)
// 24=7.0.0 26=8.0.0 29=10.0.0 30=11.0.0 31=12.0.0
// 24=7.0.0 25=7.1.0 26=8.0.0 29=10.0.0 30=11.0.0 31=12.0.0 33=13.0.0
defaultConfig {
applicationId "com.nltechno.dolidroidpro"
minSdkVersion 25
Expand All @@ -27,6 +24,7 @@ android {
// Add support for the org.apache.http package
useLibrary 'org.apache.http.legacy'
namespace 'com.nltechno.dolidroidpro'
compileSdk 33
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http:https://schemas.android.com/apk/res/android"
android:versionCode="57"
android:versionCode="58"
android:versionName="DoliDroid Pro 3.0"
android:installLocation="auto"
>
Expand Down
7 changes: 4 additions & 3 deletions app/src/main/res/layout/manage_url_item.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="32dp"
android:layout_weight="1" />

<ImageView
android:id="@+id/image_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_height="32dp"
android:clickable="true"
android:src="@drawable/ic_baseline_clear_24"/>
android:contentDescription="@string/DeletePredefinedUrl"
android:src="@drawable/ic_baseline_clear_24" />

</LinearLayout>

Expand Down

0 comments on commit 18bc83f

Please sign in to comment.