Skip to content

Commit

Permalink
Cleanup & icon
Browse files Browse the repository at this point in the history
  • Loading branch information
AsyJAIZ committed Oct 10, 2024
1 parent 29c503f commit dd52869
Show file tree
Hide file tree
Showing 23 changed files with 85 additions and 275 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Android CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:

runs-on: ubuntu-latest

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

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build debug version of NST with Gradle
run: ./gradlew :app:assembleDebug
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: NST-debugBuild
path: ./app/build/outputs/apk/debug/NST-debug.apk
47 changes: 33 additions & 14 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,34 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
# Gradle files
.gradle/
build/

# Local configuration file (sdk path, etc)
local.properties

# Log/OS Files
*.log

# Android Studio generated files and folders
captures/
.externalNativeBuild/
.cxx/
*.apk
output.json

# IntelliJ
*.iml
.idea/
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
google-services.json

# Android Profiling
*.hprof

3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

45 changes: 0 additions & 45 deletions .idea/appInsightsSettings.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/compiler.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/deploymentTargetDropDown.xml

This file was deleted.

19 changes: 0 additions & 19 deletions .idea/gradle.xml

This file was deleted.

10 changes: 0 additions & 10 deletions .idea/migrations.xml

This file was deleted.

16 changes: 0 additions & 16 deletions .idea/misc.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**Compatible with Android 12+**

![Android 13](notifshade13.png "Screenshot of module working on Android 13")
![Android 15](notifshade15d.png "Screenshot of module working on Android 15, dark theme")![Android 15](notifshade15l.png "Screenshot of module working on Android 15, light theme")

### License
This project is licensed under the Apache License, Version 2.0 (the "License"). See [LICENSE](LICENSE) for details.
3 changes: 2 additions & 1 deletion app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/build
debug/
release/
15 changes: 8 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,20 @@ plugins {
}

android {
compileSdk 31
compileSdk 34

defaultConfig {
applicationId "com.asyjaiz.A12blur"
minSdk 31
targetSdk 31
versionCode 5
versionName "1.4N"
targetSdk 35
versionCode 6
versionName "1.5N"

archivesBaseName = "NST"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.debug
}
}
Expand All @@ -27,11 +25,14 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.asyjaiz.A12blur'
buildFeatures {
buildConfig true
}
}

dependencies {

compileOnly 'de.robv.android.xposed:api:82'
compileOnly fileTree("libs") {include("*.jar")}

//implementation 'androidx.appcompat:appcompat:1.4.2'
//implementation 'com.google.android.material:material:1.6.1'
Expand Down
Binary file added app/libs/api-82-sources.jar
Binary file not shown.
Binary file added app/libs/api-82.jar
Binary file not shown.
Loading

0 comments on commit dd52869

Please sign in to comment.