8000 fix: set client-engine version in events by jaeopt · Pull Request #410 · optimizely/android-sdk · GitHub
[go: up one dir, main page]

Skip to content

fix: set client-engine version in events #410

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Mar 28, 2022
Merged
Prev Previous commit
Next Next commit
testing
  • Loading branch information
jaeopt committed Mar 23, 2022
commit c42f3620b2eb6c69c9f85c3b508f997c47ead292
5 changes: 4 additions & 1 deletion android-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ android {
versionCode 1
versionName version_name
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
buildConfigField "String", "CLIENT_VERSION", "\"$version_name\""

// buildConfigField "String", "CLIENT_VERSION", "\"$version_name\""
buildConfigField "String", "CLIENT_VERSION", "\"1.2.3\""

// these rules will be merged to app's proguard rules
consumerProguardFiles '../proguard-rules.txt'
}
Expand Down
0