Compare commits
3 commits
caf485ec61
...
0195e4ee58
Author | SHA1 | Date | |
---|---|---|---|
0195e4ee58 | |||
8ac6eb24a0 | |||
a1a8bb794e |
4 changed files with 6 additions and 6 deletions
|
@ -2,8 +2,6 @@ name: Build & Test
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
|
@ -47,7 +45,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
name: Run UI Tests
|
||||
needs:
|
||||
- validate
|
||||
- unit_tests
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: set up JDK
|
||||
|
|
|
@ -47,8 +47,8 @@ android {
|
|||
applicationId = "com.wbrawner.simplemarkdown"
|
||||
minSdk = libs.versions.minSdk.get().toInt()
|
||||
targetSdk = libs.versions.maxSdk.get().toInt()
|
||||
versionCode = 42
|
||||
versionName = "1.0.1"
|
||||
versionCode = 44
|
||||
versionName = "1.0.2"
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
testInstrumentationRunnerArguments["clearPackageData"] = "true"
|
||||
buildConfigField("boolean", "ENABLE_CUSTOM_CSS", "true")
|
||||
|
|
|
@ -10,7 +10,7 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
minSdk = libs.versions.minSdk.get().toInt()
|
||||
|
||||
consumerProguardFiles("consumer-rules.pro")
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
-dontwarn javax.annotation.processing.AbstractProcessor
|
||||
-dontwarn javax.annotation.processing.SupportedOptions
|
Loading…
Reference in a new issue