Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: set up JDK 11
- name: set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
cache: gradle

Expand Down
8 changes: 3 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@ android {
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.txt'
}
}
namespace 'com.holokenmod'
lint {
disable 'ExpiredTargetSdkVersion'
}
namespace = 'com.holokenmod'
}
repositories {
google()
mavenCentral()
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/srlee/DLX/DLX.java
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ private void search(int k)
if (root.GetRight() == root)
{
foundsolution = new ArrayList<Integer>(trysolution);
NumSolns++;
NumSolns++;
return;
}
chosenCol = ChooseMinCol();
Expand Down