Commit 712fe09c authored by Your Name's avatar Your Name

.

parent 68c89ab7
Pipeline #1420 failed with stages
......@@ -7,7 +7,7 @@ public class Global {
public static String FUNCTION_APP_MANAGER = "function_app_manager";
public static String FUNCTION_WHATS_APP = "function_whats_app";
public static String FUNCTION_APP_PROCESS = "function_app_process";
public static String FUNCTION_SIMILAR_PHOTOS = "function_similar_photos";
// public static String FUNCTION_SIMILAR_PHOTOS = "function_similar_photos";
public static String FUNCTION_SCREENSHOT = "function_screenshot";
......
......@@ -6,7 +6,7 @@ import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_BATTERY;
import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_CLEAN;
import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_LARGE_FILE;
import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_SCREENSHOT;
import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_SIMILAR_PHOTOS;
//import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_SIMILAR_PHOTOS;
import static com.swiftcleaner.chovey.model.bean.Global.FUNCTION_WHATS_APP;
import static com.swiftcleaner.chovey.model.bean.Global.OpenLoadTime;
......@@ -281,11 +281,11 @@ public class StartActivity extends AppCompatActivity {
finish();
return;
}
if (Objects.equals(actionId, FUNCTION_SIMILAR_PHOTOS)) {
startActivity(new Intent(this, SimilarPhotosActivity.class));
finish();
return;
}
// if (Objects.equals(actionId, FUNCTION_SIMILAR_PHOTOS)) {
// startActivity(new Intent(this, SimilarPhotosActivity.class));
// finish();
// return;
// }
if (Objects.equals(actionId, FUNCTION_SCREENSHOT)) {
startActivity(new Intent(this, ScreenShotActivity.class));
finish();
......
......@@ -21,7 +21,7 @@ import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_BATTERY
import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_CLEAN
import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_LARGE_FILE
import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_SCREENSHOT
import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_SIMILAR_PHOTOS
//import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_SIMILAR_PHOTOS
import com.swiftcleaner.chovey.model.bean.Global.FUNCTION_WHATS_APP
import com.swiftcleaner.chovey.model.bean.Global.NotificationInterval
import com.swiftcleaner.chovey.model.bean.Global.NotificationStayCount
......@@ -44,7 +44,7 @@ object NotificationUtils {
FUNCTION_LARGE_FILE,
FUNCTION_WHATS_APP,
FUNCTION_APP_PROCESS,
FUNCTION_SIMILAR_PHOTOS,
// FUNCTION_SIMILAR_PHOTOS,
FUNCTION_SCREENSHOT
)
......@@ -147,7 +147,7 @@ object NotificationUtils {
bigRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_appmanager)
smallRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_appmanager)
val desc = "Manage apps easily with [APP Name]."
val desc = "Manage apps easily with Swift Cleaner - Phone Helper"
smallRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.logox)
bigRemoteViews.setTextViewText(R.id.tv_desc, desc)
smallRemoteViews.setTextViewText(R.id.tv_desc, desc)
......@@ -193,15 +193,15 @@ object NotificationUtils {
smallRemoteViews.setTextViewText(R.id.tv_desc, desc)
}
FUNCTION_SIMILAR_PHOTOS -> {
bigRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_simiar)
smallRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_simiar)
val desc = "Similar pics? Clear for space"
smallRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.logox)
bigRemoteViews.setTextViewText(R.id.tv_desc, desc)
smallRemoteViews.setTextViewText(R.id.tv_desc, desc)
}
// FUNCTION_SIMILAR_PHOTOS -> {
// bigRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_simiar)
// smallRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_simiar)
//
// val desc = "Similar pics? Clear for space"
// smallRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.logox)
// bigRemoteViews.setTextViewText(R.id.tv_desc, desc)
// smallRemoteViews.setTextViewText(R.id.tv_desc, desc)
// }
FUNCTION_SCREENSHOT -> {
bigRemoteViews.setImageViewResource(R.id.iv_icon, R.mipmap.h_screenshot)
......
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