Skip to content

Commit

Permalink
refined and reorganized BigPictureActivity, added custom steamgrid ap…
Browse files Browse the repository at this point in the history
…ikey to settings fragment, refactored settings fragment for better readability and tabbed layout, added dark mode, modified all classes related to theme to change styling on misc labels, popups, and edit text, finalized turnip driver switching for shortcuts, too many changes to track
  • Loading branch information
coffincolors committed Sep 23, 2024
1 parent 41f2af5 commit 9a6951f
Show file tree
Hide file tree
Showing 81 changed files with 3,942 additions and 508 deletions.
Binary file modified app/.gradle/8.5/checksums/checksums.lock
Binary file not shown.
Binary file modified app/.gradle/8.5/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified app/.gradle/8.5/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified app/.gradle/8.5/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified app/.gradle/8.5/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified app/.gradle/8.5/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified app/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified app/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
Binary file modified app/.gradle/file-system.probe
Binary file not shown.
1 change: 0 additions & 1 deletion app/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 26 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ apply plugin: 'com.android.application'

android {
namespace 'com.winlator'
compileSdk 31
compileSdk 34

defaultConfig {
applicationId 'com.cmodded.winlator'
minSdkVersion 28
targetSdkVersion 28
versionCode 18
versionName "7.1.3-cmod-proot-v8"
versionName "7.1.3-cmod-proot-v9"

ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a'
Expand All @@ -32,7 +32,7 @@ android {

buildTypes {
debug {
minifyEnabled true
minifyEnabled false
//proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down Expand Up @@ -69,4 +69,27 @@ dependencies {
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.activity:activity-ktx:1.4.0'
implementation 'androidx.fragment:fragment-ktx:1.4.0'
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'org.conscrypt:conscrypt-android:2.5.2' // for Conscrypt
implementation 'org.bouncycastle:bcprov-jdk15on:1.68' // for BouncyCastle
implementation 'org.openjsse:openjsse:1.1.7'
implementation 'androidx.core:core:1.13.1'// for OpenJSSE





}

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.jetbrains.kotlin') {
details.useVersion "1.8.22" // or the Kotlin version you're using
}
}
}

2 changes: 1 addition & 1 deletion app/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# https://developer.android.com/r/tools/gradle-multi-project-decoupled-projects
# org.gradle.parallel=true
#Sat Jul 27 03:55:34 CDT 2024
android.enableJetifier=true
android.enableJetifier=false
android.useAndroidX=true
android.nonFinalResIds=false
org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
9 changes: 8 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
android:label="Winlator.cmod">

<activity android:name="com.winlator.MainActivity"
android:theme="@style/AppTheme"
android:theme="@style/AppTheme.Dark"
android:exported="true"
android:screenOrientation="sensor"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|smallestScreenSize|density|navigation">
Expand All @@ -47,6 +47,13 @@
</intent-filter>
</activity>

<activity
android:name="com.winlator.BigPictureActivity"
android:theme="@style/Theme.AppCompat"
android:screenOrientation="landscape"
android:exported="false" />


<activity android:name="com.winlator.XServerDisplayActivity"
android:exported="true"
android:theme="@style/AppThemeFullscreen"
Expand Down
Loading

0 comments on commit 9a6951f

Please sign in to comment.