Commit 5b35e0f4 authored by Yusuke Iwaki's avatar Yusuke Iwaki

remove log-wrapper-rel

parent 1f004394
......@@ -40,7 +40,7 @@ android {
}
dependencies {
compile project(':log-wrapper-dev')
compile project(':log-wrapper')
compile rootProject.ext.supportAnnotations
compile 'com.squareup.okhttp3:okhttp-ws:3.4.1'
compile rootProject.ext.rxJava
......
......@@ -95,8 +95,7 @@ repositories {
}
dependencies {
debugCompile project(':log-wrapper-dev')
releaseCompile project(':log-wrapper-rel')
compile project(':log-wrapper')
compile project(':android-ddp')
compile project(':rocket-chat-android-widgets')
compile project(':realm-helpers')
......
apply plugin: 'com.android.library'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath rootProject.ext.androidPlugin
}
}
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.compileSdkVersion
versionCode 1
versionName "1"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile rootProject.ext.supportAnnotations
}
\ No newline at end of file
<manifest package="chat.rocket.android.log"/>
\ No newline at end of file
package chat.rocket.android.log;
public class RCLog {
public static void d(String log, Object... args) {
}
public static void d(Throwable throwable) {
}
public static void d(Throwable throwable, String log, Object... args) {
}
public static void w(String log, Object... args) {
}
public static void w(Throwable throwable) {
}
public static void w(Throwable throwable, String log, Object... args) {
}
public static void e(String log, Object... args) {
}
public static void e(Throwable throwable) {
}
public static void e(Throwable throwable, String log, Object... args) {
}
}
......@@ -43,7 +43,7 @@ android {
dependencies {
testCompile 'junit:junit:4.12'
compile project(':log-wrapper-rel')
compile project(':log-wrapper')
compile rootProject.ext.boltsTask
compile rootProject.ext.supportAnnotations
compile rootProject.ext.supportAppCompat
......
include ':app', ':android-ddp', ':rocket-chat-android-widgets', ':realm-helpers',
':log-wrapper-dev',
':log-wrapper-rel'
':log-wrapper'
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment