summaryrefslogtreecommitdiffstats
path: root/app/build.gradle
blob: 484085933c65ae64616abde45b2f26b4ee11f796 (plain) (blame)
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
plugins {
	id 'com.android.application'
}

android {
	compileSdkVersion 29
	
	useLibrary 'org.apache.http.legacy'
	
	defaultConfig {
		applicationId "com.xc3fff0e.xmanager"
		minSdkVersion 21
		targetSdkVersion 31
		versionCode 210209
		versionName "4.0"
	}
	
	buildTypes {
		release {
			minifyEnabled false
			proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
		}
	}
}

dependencies {
	implementation fileTree(dir: 'libs', include: ['*.jar'])
	implementation 'androidx.appcompat:appcompat:1.2.0'
	implementation 'com.google.android.material:material:1.4.0'
	implementation 'com.google.android.gms:play-services-ads:20.1.0'
	implementation 'com.google.code.gson:gson:2.8.7'
	implementation 'com.squareup.okhttp3:okhttp:3.9.1'
}