aboutsummaryrefslogtreecommitdiffstats
path: root/libs/MemorizingTrustManager/example/build.gradle
blob: 00bfe99e2081542e2e6c7b5194b3434ab15adf65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply plugin: 'android'

dependencies {
	compile rootProject
}

android {
	compileSdkVersion 19
	buildToolsVersion "19.1"
	defaultConfig {
        	minSdkVersion 7
		targetSdkVersion 19
	}

	sourceSets {
		main {
			manifest.srcFile 'AndroidManifest.xml'
			java.srcDirs = ['src']
			res.srcDirs = ['res']
		}
	}

}