Skip to content

Commit

Permalink
Merge branch 'bk138:master' into configurable-network-binding
Browse files Browse the repository at this point in the history
  • Loading branch information
elluisian authored Sep 1, 2024
2 parents 9232ebc + e8877a3 commit 5cfc4d8
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 16 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 11
with:
submodules: 'true'
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: gradle
- name: Assemble Release Build
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "net.christianbeier.droidvnc_ng"
minSdkVersion 24
targetSdkVersion 34
versionCode 36
versionName "2.7.0"
versionCode 37
versionName "2.7.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

Expand Down
35 changes: 25 additions & 10 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -383,10 +383,12 @@
android:layout_height="match_parent">

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_column="0"
android:padding="10dp"
android:hyphenationFrequency="full"
android:text="@string/main_activity_screen_capturing" />

<TextView
Expand All @@ -397,8 +399,9 @@
android:text="@string/main_activity_colon" />

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:layout_column="2"
android:padding="10dp"
android:text="@string/main_activity_fallback"
Expand All @@ -411,10 +414,12 @@
android:layout_height="match_parent">

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_column="0"
android:padding="10dp"
android:hyphenationFrequency="full"
android:text="@string/main_activity_input" />

<TextView
Expand All @@ -425,8 +430,9 @@
android:text="@string/main_activity_colon" />

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:layout_column="2"
android:padding="10dp"
android:text="@string/main_activity_fallback"
Expand All @@ -441,10 +447,12 @@
android:id="@+id/permission_row_file_access">

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_column="0"
android:padding="10dp"
android:hyphenationFrequency="full"
android:text="@string/main_activity_file_access" />

<TextView
Expand All @@ -455,8 +463,9 @@
android:text="@string/main_activity_colon" />

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:layout_column="2"
android:padding="10dp"
android:text="@string/main_activity_fallback"
Expand All @@ -471,10 +480,12 @@
android:id="@+id/permission_row_notification">

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_column="0"
android:padding="10dp"
android:hyphenationFrequency="full"
android:text="@string/main_activity_notifications" />

<TextView
Expand All @@ -485,8 +496,9 @@
android:text="@string/main_activity_colon" />

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:layout_column="2"
android:padding="10dp"
android:text="@string/main_activity_fallback"
Expand All @@ -501,10 +513,12 @@
android:id="@+id/permission_row_start_on_boot">

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:layout_column="0"
android:padding="10dp"
android:hyphenationFrequency="full"
android:text="@string/main_activity_start_on_boot" />

<TextView
Expand All @@ -515,8 +529,9 @@
android:text="@string/main_activity_colon" />

<TextView
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="3"
android:layout_column="2"
android:padding="10dp"
android:text="@string/main_activity_fallback"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.5.0'
classpath 'com.android.tools.build:gradle:8.5.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
2 changes: 1 addition & 1 deletion libvncserver

0 comments on commit 5cfc4d8

Please sign in to comment.