Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/singal_selction_radio_group' int…
Browse files Browse the repository at this point in the history
…o singal_selction_radio_group

# Conflicts:
#	.idea/.gitignore
#	README.md
  • Loading branch information
MalaRuparel2023 committed Apr 29, 2024
2 parents b434ef8 + 96057a9 commit fe11eb2
Show file tree
Hide file tree
Showing 5 changed files with 109 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Android build

on:
pull_request:
branches:
- "development"


jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Java SDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17

- name: Run with Gradle
run: |
./gradlew clean
./gradlew assembleDebug
- name: Upload APK artifact
id: artifact-upload-step
uses: actions/upload-artifact@v4
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk

32 changes: 32 additions & 0 deletions .github/workflows/lint-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Android Lint
run-name: Running Android Lint

on:
pull_request:
branches:
- 'development'

jobs:
android-lint:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Java SDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17

- name: Run Lint
run: ./gradlew lint
continue-on-error: false

- name: Uploading Lint Report
id: artifact-upload-step
uses: actions/upload-artifact@v4
with:
name: lint-results.html
path: app/build/reports/lint-results-debug.html
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,29 @@
.externalNativeBuild
.cxx
local.properties
/.idea/sonarlint/issuestore/0/7/0712df971a99ac4d2fccb8e0fb19f377f3374cca
/.idea/sonarlint/issuestore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4
/.idea/sonarlint/issuestore/5/6/5611303df8abe4fb3eb845a27bdaf399c3d59608
/.idea/sonarlint/issuestore/7/4/749edfcc96398253e5b3416184e95c46621da850
/.idea/sonarlint/issuestore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d
/.idea/sonarlint/issuestore/9/f/9f833c3a85ee282687284d1fc882e84c0c069ed7
/.idea/sonarlint/issuestore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302
/.idea/sonarlint/issuestore/f/c/fce2f069a95d69fe32b497ed827ae77430c69169
/.idea/sonarlint/issuestore/index.pb
/.idea/sonarlint/securityhotspotstore/0/7/0712df971a99ac4d2fccb8e0fb19f377f3374cca
/.idea/sonarlint/securityhotspotstore/2/a/2afbb999f001938c88fa43fc2ef52abf0f8213e4
/.idea/sonarlint/securityhotspotstore/5/6/5611303df8abe4fb3eb845a27bdaf399c3d59608
/.idea/sonarlint/securityhotspotstore/7/4/749edfcc96398253e5b3416184e95c46621da850
/.idea/sonarlint/securityhotspotstore/8/e/8ec9a00bfd09b3190ac6b22251dbb1aa95a0579d
/.idea/sonarlint/securityhotspotstore/9/f/9f833c3a85ee282687284d1fc882e84c0c069ed7
/.idea/sonarlint/securityhotspotstore/a/5/a5cc2925ca8258af241be7e5b0381edf30266302
/.idea/sonarlint/securityhotspotstore/f/c/fce2f069a95d69fe32b497ed827ae77430c69169
/.idea/sonarlint/securityhotspotstore/index.pb
/.idea/compiler.xml
/.idea/deploymentTargetDropDown.xml
/.idea/gradle.xml
/.idea/kotlinc.xml
/.idea/migrations.xml
/.idea/misc.xml
/.idea/vcs.xml
/.idea
17 changes: 17 additions & 0 deletions .idea/.gitignore

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

2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ dependencyResolutionManagement {
}
}

rootProject.name = "SmartFilter"
rootProject.name = "smartFilter"
include(":app")
include(":ss-smart-filter")

0 comments on commit fe11eb2

Please sign in to comment.