This repository was archived by the owner on Apr 19, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 947
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (35 loc) · 1.32 KB
/
build.gradle
File metadata and controls
43 lines (35 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
apply plugin: 'com.android.application'
android {
compileSdkVersion android_compile_version
namespace "com.google.example.games.tanc"
defaultConfig {
/*
TODO: Replace this value with your application's package name
You can find this in Linked Apps section of your Game Service in the Google Play Console
*/
applicationId "com.google.example.games.replace.me"
minSdkVersion android_min_sdk_version
targetSdkVersion android_compile_version
versionCode 1
versionName "1.0"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt')
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0-alpha01'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation "androidx.activity:activity:1.2.0-alpha08"
implementation "androidx.activity:activity-ktx:1.2.0-alpha03"
implementation "androidx.fragment:fragment:1.3.0-alpha08"
implementation "com.google.android.gms:play-services-games:20.0.1"
implementation "com.google.android.gms:play-services-auth:${gms_library_version}"
}