Skip to content
Snippets Groups Projects
build.gradle 4.27 KiB
Newer Older
  • Learn to ignore specific revisions
  • apply plugin: 'com.android.application'
    
    apply plugin: 'witness'
    
    
    	def supportVersion = '23.2.1'
    
    	compile project(':briar-core')
    
    akwizgran's avatar
    akwizgran committed
    	compile project(':bramble-android')
    
    	compile fileTree(dir: 'libs', include: '*.jar')
    
    	compile "com.android.support:support-v4:$supportVersion"
    	compile("com.android.support:appcompat-v7:$supportVersion") {
    		exclude module: 'support-v4'
    	}
    
    	compile("com.android.support:preference-v14:$supportVersion") {
    		exclude module: 'support-v4'
    	}
    	compile("com.android.support:design:$supportVersion") {
    		exclude module: 'support-v4'
    		exclude module: 'recyclerview-v7'
    	}
    
    	compile "com.android.support:cardview-v7:$supportVersion"
    
    	compile 'com.android.support:support-annotations:23.4.0'
    
    	compile('ch.acra:acra:4.8.5') {
    
    str4d's avatar
    str4d committed
    		exclude module: 'support-v4'
    		exclude module: 'support-annotations'
    	}
    
    	compile 'info.guardianproject.panic:panic:0.5'
    	compile 'info.guardianproject.trustedintents:trustedintents:0.2'
    
    Torsten Grote's avatar
    Torsten Grote committed
    	compile 'de.hdodenhof:circleimageview:2.1.0'
    
    	compile 'com.google.zxing:core:3.2.1'
    
    	provided 'javax.annotation:jsr250-api:1.0'
    
    	compile 'com.jpardogo.materialtabstrip:library:1.1.0'
    	compile 'com.github.bumptech.glide:glide:3.7.0'
    
    	compile 'uk.co.samuelwall:material-tap-target-prompt:1.3.0'
    
    	testCompile project(path: ':bramble-core', configuration: 'testOutput')
    
    Ernir Erlingsson's avatar
    Ernir Erlingsson committed
    	testCompile 'org.robolectric:robolectric:3.0'
    
    	testCompile 'org.mockito:mockito-core:1.10.19'
    
    str4d's avatar
    str4d committed
    			'ch.acra:acra:afd5b28934d5166b55f261c85685ad59e8a4ebe9ca1960906afaa8c76d8dc9eb',
    
    			'info.guardianproject.panic:panic:a7ed9439826db2e9901649892cf9afbe76f00991b768d8f4c26332d7c9406cb2',
    			'info.guardianproject.trustedintents:trustedintents:6221456d8821a8d974c2acf86306900237cf6afaaa94a4c9c44e161350f80f3e',
    
    Torsten Grote's avatar
    Torsten Grote committed
    			'de.hdodenhof:circleimageview:bcbc588e19e6dcf8c120b1957776bfe229efba5d2fbe5da7156372eeacf65503',
    
    			'com.google.zxing:core:b4d82452e7a6bf6ec2698904b332431717ed8f9a850224f295aec89de80f2259',
    
    			'com.android.support:support-v4:81ce890f26d35c75ad17d0f998a7e3230330c3b41e0b629566bc744bee89e448',
    			'com.android.support:appcompat-v7:00f9d93acacd6731f309724054bf51492814b4b2869f16d7d5c0038dcb8c9a0d',
    			'com.android.support:preference-v14:44881bb46094e86d0bc2426f205419674a5b4eb514b44b5a4659b5de29f71eb7',
    			'com.android.support:design:003e0c0bea0a6891f8b2bc43f20ae7af2a49a17363e5bb10df5ee0bae12fa686',
    
    			'com.android.support:support-annotations:e91a88dd0c5e99069b7f09d4a46b5e06f1e9c4c72fc0a8e987e25d86af480f01',
    
    			'com.android.support:animated-vector-drawable:06d1963b85aa917099d7757e6a7b3e4dc06889413dc747f625ae8683606db3a1',
    			'com.android.support:support-vector-drawable:799bafe4c3de812386f0b291f744d5d6876452722dd40189b9ab87dbbf594ea1',
    			'com.android.support:recyclerview-v7:44040a888e23e0c93162a3377cfe06751080e3c22d369ab0d4301ef60d63b0fe',
    
    akwizgran's avatar
    akwizgran committed
    			'com.android.support:preference-v7:775101bd07bd052e455761c5c5d9523d7ad59f2f320e3e8cbde241fd6b1d6025',
    
    			'com.android.support:cardview-v7:4595f1c4a28cfa083b6c0920ad4d49e1c2ca4b8302a955e548f68eb63b74931b',
    
    			'com.jpardogo.materialtabstrip:library:24d19232b319f8c73e25793432357919a7ed972186f57a3b2c9093ea74ad8311',
    			'com.github.bumptech.glide:glide:76ef123957b5fbaebb05fcbe6606dd58c3bc3fcdadb257f99811d0ac9ea9b88b',
    
    			'uk.co.samuelwall:material-tap-target-prompt:f67e1caead12a914525b32cbf6da52a96b93ff89573f93cb41102ef3130fb64a',
    
    def getGitHash = { ->
    	def stdout = new ByteArrayOutputStream()
    	try {
    		exec {
    			commandLine 'git', 'rev-parse', '--short', 'HEAD'
    			standardOutput = stdout
    		}
    		return stdout.toString().trim()
    	} catch (Exception ignored) {
    		return "No commit hash"
    	}
    }
    
    
    	compileSdkVersion 23
    
    akwizgran's avatar
    akwizgran committed
    	buildToolsVersion "23.0.3"
    
    akwizgran's avatar
    akwizgran committed
    		minSdkVersion 14
    		targetSdkVersion 22
    		resValue "string", "app_package", "org.briarproject.briar"
    
    		buildConfigField "String", "GitHash", "\"${getGitHash()}\""
    
    	buildTypes {
    		debug {
    
    			shrinkResources false
    
    			minifyEnabled true
    			proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    		}
    		release {
    
    			shrinkResources true
    
    			minifyEnabled true
    			proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    		}
    	}
    
    	compileOptions {
    
    		sourceCompatibility JavaVersion.VERSION_1_7
    		targetCompatibility JavaVersion.VERSION_1_7
    
    	lintOptions {
    
    ligi's avatar
    ligi committed
    		warning 'MissingTranslation'
    		warning 'ImpliedQuantity'