Skip to content

Commit

Permalink
Remove build flavors for simpler builds for now
Browse files Browse the repository at this point in the history
  • Loading branch information
arkon committed Mar 7, 2021
1 parent 7cb4fee commit 8285f46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Build and test app
uses: eskatos/gradle-command-action@v1
with:
arguments: assembleGithubRelease
arguments: assembleRelease
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: true
Expand All @@ -64,7 +64,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/') && github.repository == 'LiveTL/android'
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: app/build/outputs/apk/standard/release
releaseDirectory: app/build/outputs/apk/release
signingKeyBase64: ${{ secrets.KEY_B64 }}
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.PASSWORD }}
Expand Down
14 changes: 1 addition & 13 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"
versionName "0.0.1"
}

sourceSets {
Expand All @@ -34,18 +34,6 @@ android {
}
}

flavorDimensions 'variant'

productFlavors {
playstore {
dimension 'variant'
}
github {
dimension 'variant'
applicationIdSuffix '.github'
}
}

buildFeatures {
compose true
viewBinding true
Expand Down

0 comments on commit 8285f46

Please sign in to comment.