~singpolyma/cheogram-android

07b47172a08c01c248c6f69bae48d9e60695a14b — Sam Whited 8 years ago 038f7af
Add build deps and move build props to build file
M build.gradle => build.gradle +50 -9
@@ 1,16 1,57 @@
// Top-level build file where you can add configuration options common to all
// sub-projects/modules.
buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.2'
    }
	repositories {
		jcenter()
		mavenCentral()
	}
	dependencies {
		classpath 'com.android.tools.build:gradle:0.12.2'
	}
}

allprojects {
    repositories {
        jcenter()
    }
	repositories {
		jcenter()
		mavenCentral()
	}
}

apply plugin: 'android'

repositories {
	mavenCentral()
}

android {
	compileSdkVersion 19
	buildToolsVersion "19.1"

	defaultConfig {
		minSdkVersion 14
		targetSdkVersion 19
		versionCode 32
		versionName "0.8-alpha"
	}

	compileOptions {
		sourceCompatibility JavaVersion.VERSION_1_7
		targetCompatibility JavaVersion.VERSION_1_7
	}
	buildTypes {
		release {
			runProguard true
			proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
		}
		debug {
			runProguard false
			proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
		}
	}
}

dependencies {
	// ToDo: Move libs here if possible (instead of including the jars)
	"compile 'com.android.support:support-v13:19.1.0'"
	compile fileTree(dir: 'libs', include: ['*.jar'])
}

M conversations/src/main/AndroidManifest.xml => conversations/src/main/AndroidManifest.xml +1 -7
@@ 1,13 1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="eu.siacs.conversations"
    android:versionCode="32"
    android:versionName="0.8-alpha" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />
		package="eu.siacs.conversations">

    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

A libs/bcprov-jdk15on-150.jar => libs/bcprov-jdk15on-150.jar +0 -0
A libs/otr4j-0.10.jar => libs/otr4j-0.10.jar +0 -0