Skip to content
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

Remove of apk installation logic to avoid complaints from Google Play during store submission #11

Closed
wants to merge 15 commits into from
Prev Previous commit
Next Next commit
JavaVersion.VERSION_1_8
  • Loading branch information
VLADISLAV NIKOLAEV committed May 9, 2024
commit 59991bd97f857e49a08d23e76792c56320552216
6 changes: 1 addition & 5 deletions TurkcellUpdaterSampleApp/jitpack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
# configuration file for building snapshots and releases with jitpack.io
jdk:
- openjdk17
before_install:
- sdk install java 17.0.3-tem
- sdk use java 17.0.3-tem
- openjdk17
4 changes: 2 additions & 2 deletions TurkcellUpdaterSampleApp/turkcellUpdater/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

buildTypes {
Expand Down