Skip to content

Commit

Permalink
🎊Version1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
yydcdut committed Nov 13, 2015
1 parent 3f20412 commit 25b55f8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ dependencies {
compile files('src/libs/umeng-analytics-v5.5.3.jar')
compile files('src/libs/com.umeng.message.lib_v2.4.1.jar')
compile project(':PG_Edit_SDK')
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3'
// debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3'
// releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3'
compile files('src/libs/mta-sdk-1.6.2.jar')
compile files('src/libs/open_sdk_r5043.jar')
// compile 'com.facebook.fresco:fresco:0.7.0'
Expand Down
12 changes: 5 additions & 7 deletions app/src/main/java/com/yydcdut/note/NoteApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
import com.baidu.mapapi.SDKInitializer;
import com.evernote.client.android.EvernoteSession;
import com.iflytek.cloud.SpeechUtility;
import com.squareup.leakcanary.LeakCanary;
import com.squareup.leakcanary.RefWatcher;
import com.umeng.analytics.MobclickAgent;
import com.yydcdut.note.model.PhotoNoteDBModel;
import com.yydcdut.note.model.UserCenter;
Expand All @@ -36,7 +34,7 @@ public class NoteApplication extends Application {
private static NoteApplication mInstance;
private static final int MAX_THREAD_POOL_NUMBER = 5;
private ExecutorService mPool;
private RefWatcher mRefWatcher;
// private RefWatcher mRefWatcher;

private static final EvernoteSession.EvernoteService EVERNOTE_SERVICE = EvernoteSession.EvernoteService.PRODUCTION;
private static final boolean SUPPORT_APP_LINKED_NOTEBOOKS = true;
Expand Down Expand Up @@ -65,7 +63,7 @@ public void onCreate() {
mInstance = NoteApplication.this;
super.onCreate();

mRefWatcher = LeakCanary.install(this);
// mRefWatcher = LeakCanary.install(this);

initImageLoader();
initExecutor();
Expand All @@ -83,14 +81,14 @@ public void onCreate() {
}

//打点
MobclickAgent.setDebugMode(true);
MobclickAgent.setDebugMode(false);
MobclickAgent.openActivityDurationTrack(true);
MobclickAgent.updateOnlineConfig(this);
MobclickAgent.setCatchUncaughtExceptions(false);
MobclickAgent.setCatchUncaughtExceptions(true);

// CrashHandler.getInstance().init(getApplicationContext());

YLog.setDEBUG(true);
YLog.setDEBUG(false);

}

Expand Down
3 changes: 1 addition & 2 deletions app/src/main/res/layout/frag_detail.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:scaleType="fitXY"
android:src="@drawable/bg_user_background"/>
android:scaleType="fitXY"/>
</FrameLayout>
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_NAME=1.1.4
VERSION_CODE=7
VERSION_NAME=1.1.5
VERSION_CODE=8
EVERNOTE_CONSUMER_KEY=378040621-5947
EVERNOTE_CONSUMER_SECRET=94432ae4a62b6c12
TENCENT_KEY=1104732115

0 comments on commit 25b55f8

Please sign in to comment.