Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
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
35 changes: 0 additions & 35 deletions .github/workflows/build-debug-apk.yml

This file was deleted.

35 changes: 0 additions & 35 deletions .github/workflows/build-release-apk.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/.gradle
/.idea
/*/build
/*/obfuscation
/build
/settings.json
/app/app_config.json
Expand Down
39 changes: 25 additions & 14 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,40 +1,51 @@
apply plugin: 'com.android.application'

android {
namespace "io.github.ratul.topactivity"
compileSdkVersion 36

defaultConfig {
applicationId "io.github.ratul.topactivity"
minSdkVersion 24
targetSdkVersion 36
versionCode 20
versionName "2.0.0"
versionName "1.5.9"
}

buildTypes {
release {
debuggable false
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
}
}

buildFeatures {
buildConfig true
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

flavorDimensions 'version'
productFlavors {
global {
dimension 'version'
}
playStore {
dimension 'version'
}
}
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.core:core:1.17.0'
}

configurations.all {
resolutionStrategy {
force('org.jetbrains.kotlin:kotlin-stdlib-jdk8:2.2.0')
}
}
159 changes: 0 additions & 159 deletions app/build/bin/injected/AndroidManifest.xml

This file was deleted.

Loading