This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,8 @@ android {
1212 defaultConfig {
1313 minSdk 21
1414 targetSdk 33
15-
16- versionCode 100
17- versionName " 1.0.0"
15+ versionName project. findProperty(" VERSION_NAME" )
16+ versionCode Integer . valueOf(project. findProperty(" VERSION_CODE" ))
1817 }
1918
2019 buildTypes {
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ android {
1010 applicationId " com.itsaky.androidide.androidtreesitter"
1111 minSdk 21
1212 targetSdk 33
13- versionCode 100
14- versionName " 1.0.0 "
13+ versionName project . findProperty( " VERSION_NAME " )
14+ versionCode Integer . valueOf(project . findProperty( " VERSION_CODE " ))
1515
1616 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
1717 }
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ RELEASE_SIGNING_ENABLED=true
77
88GROUP =io.github.itsaky
99POM_ARTIFACT_ID =android-tree-sitter
10- VERSION_NAME =1.0.0
10+ VERSION_CODE =101
11+ VERSION_NAME =1.0.1
1112
1213POM_NAME =Android Tree Sitter
1314POM_DESCRIPTION =Android Java bindings for tree-sitter.
You can’t perform that action at this time.
0 commit comments