Skip to content
Snippets Groups Projects
Commit a907b25d authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Renamed project, added ASPM

parent b6629f5d
Branches
Tags
No related merge requests found
Showing
with 25 additions and 22 deletions
plugins {
id "me.tatarka.retrolambda" version "3.2.4"
}
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'me.tatarka.retrolambda'
android { android {
compileSdkVersion 23 compileSdkVersion 'Google Inc.:Google APIs:23'
buildToolsVersion "23.0.2" buildToolsVersion "23.0.2"
defaultConfig { defaultConfig {
...@@ -17,9 +15,9 @@ android { ...@@ -17,9 +15,9 @@ android {
} }
buildTypes { buildTypes {
release { release {
minifyEnabled true //minifyEnabled true
shrinkResources true //shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' //proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
applicationVariants.all { variant -> applicationVariants.all { variant ->
variant.outputs.each { output -> variant.outputs.each { output ->
...@@ -47,13 +45,11 @@ android { ...@@ -47,13 +45,11 @@ android {
} }
} }
if (project.hasProperty("Android.signing")
&& new File((String) project.property("Android.signing") + ".gradle").exists()) {
apply from: project.property("Android.signing") + ".gradle";
}
dependencies { dependencies {
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
compile('com.mikepenz:materialdrawer:5.0.0.fastAdapter.b5-SNAPSHOT@aar') { compile('com.mikepenz:materialdrawer:5.0.0.fastAdapter.b5-SNAPSHOT@aar') {
transitive = true transitive = true
} }
...@@ -66,16 +62,23 @@ dependencies { ...@@ -66,16 +62,23 @@ dependencies {
compile('com.github.afollestad.material-dialogs:commons:0.8.5.3@aar') { compile('com.github.afollestad.material-dialogs:commons:0.8.5.3@aar') {
transitive = true transitive = true
} }
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.google.guava:guava:19.0' compile 'com.google.guava:guava:19.0'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'joda-time:joda-time:2.9.1' compile 'joda-time:joda-time:2.9.1'
compile 'org.joda:joda-convert:1.8' compile 'org.joda:joda-convert:1.8'
compile 'de.greenrobot:eventbus:2.4.0'
compile 'com.bignerdranch.android:expandablerecyclerview:2.0.4' compile 'com.bignerdranch.android:expandablerecyclerview:2.0.4'
compile 'com.sothree.slidinguppanel:library:3.2.1' compile 'com.sothree.slidinguppanel:library:3.2.1'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1' compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1' compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1' compile 'com.android.support:cardview-v7:23.1.1'
compile files('libs/aspm-annotations.jar')
apt files('libs/aspm-compiler.jar')
compile 'com.jakewharton:butterknife:8.0.0-SNAPSHOT'
apt 'com.jakewharton:butterknife-compiler:8.0.0-SNAPSHOT'
} }
...@@ -6,24 +6,24 @@ ...@@ -6,24 +6,24 @@
<application <application
android:allowBackup="true" android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/app_name" android:label="@string/app_name"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.Light"> android:theme="@style/AppTheme.Light">
<service android:name=".service.QuasselService" /> <service android:name=".service.QuasselService" />
<activity <activity
android:name=".ui.chat.ChatActivity" android:name=".ui.chat.ChatActivity"
android:label="@string/app_name" android:label="@string/app_name"
android:launchMode="singleTop" android:launchMode="singleTask"
android:theme="@style/Quassel"> android:theme="@style/AppTheme.Light">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>
</activity> </activity>
</application> </application>
</manifest> </manifest>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment