[2.15.0] 优化提醒

This commit is contained in:
lixiaopeng
2023-03-31 15:09:20 +08:00
parent 662a8cdb51
commit 55aaf3a368
2057 changed files with 220406 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package com.mogo.eagle.core.function.notice;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String LIBRARY_PACKAGE_NAME = "com.mogo.eagle.core.function.notice";
/**
* @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME
*/
@Deprecated
public static final String APPLICATION_ID = "com.mogo.eagle.core.function.notice";
public static final String BUILD_TYPE = "debug";
public static final String FLAVOR = "";
public static final int VERSION_CODE = 1;
public static final String VERSION_NAME = "0.0.58.10";
}

View File

@@ -0,0 +1,19 @@
package com.alibaba.android.arouter.routes;
import com.alibaba.android.arouter.facade.enums.RouteType;
import com.alibaba.android.arouter.facade.model.RouteMeta;
import com.alibaba.android.arouter.facade.template.IRouteGroup;
import com.mogo.eagle.core.function.notice.NoticeProvider;
import java.lang.Override;
import java.lang.String;
import java.util.Map;
/**
* DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER.
*/
public class ARouter$$Group$$notice implements IRouteGroup {
@Override
public void loadInto(Map<String, RouteMeta> atlas) {
atlas.put("/notice/api", RouteMeta.build(RouteType.PROVIDER, NoticeProvider.class, "/notice/api", "notice", null, -1, -2147483648));
}
}

View File

@@ -0,0 +1,19 @@
package com.alibaba.android.arouter.routes;
import com.alibaba.android.arouter.facade.enums.RouteType;
import com.alibaba.android.arouter.facade.model.RouteMeta;
import com.alibaba.android.arouter.facade.template.IProviderGroup;
import com.mogo.eagle.core.function.notice.NoticeProvider;
import java.lang.Override;
import java.lang.String;
import java.util.Map;
/**
* DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER.
*/
public class ARouter$$Providers$$mogocorefunctionnotice implements IProviderGroup {
@Override
public void loadInto(Map<String, RouteMeta> providers) {
providers.put("com.mogo.eagle.core.function.api.notice.IMoGoNoticeProvider", RouteMeta.build(RouteType.PROVIDER, NoticeProvider.class, "/notice/api", "notice", null, -1, -2147483648));
}
}

View File

@@ -0,0 +1,18 @@
package com.alibaba.android.arouter.routes;
import com.alibaba.android.arouter.facade.template.IRouteGroup;
import com.alibaba.android.arouter.facade.template.IRouteRoot;
import java.lang.Class;
import java.lang.Override;
import java.lang.String;
import java.util.Map;
/**
* DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER.
*/
public class ARouter$$Root$$mogocorefunctionnotice implements IRouteRoot {
@Override
public void loadInto(Map<String, Class<? extends IRouteGroup>> routes) {
routes.put("notice", ARouter$$Group$$notice.class);
}
}

View File

@@ -0,0 +1,250 @@
package com.mogo.eagle.core.function.notice.dao;
import android.database.Cursor;
import androidx.room.EntityDeletionOrUpdateAdapter;
import androidx.room.EntityInsertionAdapter;
import androidx.room.RoomDatabase;
import androidx.room.RoomSQLiteQuery;
import androidx.room.SharedSQLiteStatement;
import androidx.room.util.CursorUtil;
import androidx.room.util.DBUtil;
import androidx.sqlite.db.SupportSQLiteStatement;
import com.mogo.eagle.core.function.notice.model.PushBean;
import java.lang.Class;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
@SuppressWarnings({"unchecked", "deprecation"})
public final class PushBeanDao_Impl implements PushBeanDao {
private final RoomDatabase __db;
private final EntityInsertionAdapter<PushBean> __insertionAdapterOfPushBean;
private final EntityDeletionOrUpdateAdapter<PushBean> __deletionAdapterOfPushBean;
private final SharedSQLiteStatement __preparedStmtOfDeleteAll;
private final SharedSQLiteStatement __preparedStmtOfDeleteMin;
public PushBeanDao_Impl(RoomDatabase __db) {
this.__db = __db;
this.__insertionAdapterOfPushBean = new EntityInsertionAdapter<PushBean>(__db) {
@Override
public String createQuery() {
return "INSERT OR REPLACE INTO `PushBean` (`icon`,`title`,`content`,`image`,`qr`,`scheme`,`timestamp`) VALUES (?,?,?,?,?,?,?)";
}
@Override
public void bind(SupportSQLiteStatement stmt, PushBean value) {
if (value.getAppIcon() == null) {
stmt.bindNull(1);
} else {
stmt.bindString(1, value.getAppIcon());
}
if (value.getTitle() == null) {
stmt.bindNull(2);
} else {
stmt.bindString(2, value.getTitle());
}
if (value.getContent() == null) {
stmt.bindNull(3);
} else {
stmt.bindString(3, value.getContent());
}
if (value.getImageUrl() == null) {
stmt.bindNull(4);
} else {
stmt.bindString(4, value.getImageUrl());
}
if (value.getQRCode() == null) {
stmt.bindNull(5);
} else {
stmt.bindString(5, value.getQRCode());
}
if (value.getMainSchema() == null) {
stmt.bindNull(6);
} else {
stmt.bindString(6, value.getMainSchema());
}
stmt.bindLong(7, value.getTimestamp());
}
};
this.__deletionAdapterOfPushBean = new EntityDeletionOrUpdateAdapter<PushBean>(__db) {
@Override
public String createQuery() {
return "DELETE FROM `PushBean` WHERE `timestamp` = ?";
}
@Override
public void bind(SupportSQLiteStatement stmt, PushBean value) {
stmt.bindLong(1, value.getTimestamp());
}
};
this.__preparedStmtOfDeleteAll = new SharedSQLiteStatement(__db) {
@Override
public String createQuery() {
final String _query = "DELETE FROM pushBean";
return _query;
}
};
this.__preparedStmtOfDeleteMin = new SharedSQLiteStatement(__db) {
@Override
public String createQuery() {
final String _query = "DELETE FROM pushBean WHERE timestamp IN (SELECT MIN(timestamp) FROM pushBean)";
return _query;
}
};
}
@Override
public void insertAll(final PushBean... bean) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__insertionAdapterOfPushBean.insert(bean);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public void delete(final PushBean... bean) {
__db.assertNotSuspendingTransaction();
__db.beginTransaction();
try {
__deletionAdapterOfPushBean.handleMultiple(bean);
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
}
}
@Override
public void deleteAll() {
__db.assertNotSuspendingTransaction();
final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteAll.acquire();
__db.beginTransaction();
try {
_stmt.executeUpdateDelete();
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
__preparedStmtOfDeleteAll.release(_stmt);
}
}
@Override
public void deleteMin() {
__db.assertNotSuspendingTransaction();
final SupportSQLiteStatement _stmt = __preparedStmtOfDeleteMin.acquire();
__db.beginTransaction();
try {
_stmt.executeUpdateDelete();
__db.setTransactionSuccessful();
} finally {
__db.endTransaction();
__preparedStmtOfDeleteMin.release(_stmt);
}
}
@Override
public List<PushBean> getAll() {
final String _sql = "SELECT * FROM pushBean ORDER BY timestamp DESC";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
__db.assertNotSuspendingTransaction();
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _cursorIndexOfAppIcon = CursorUtil.getColumnIndexOrThrow(_cursor, "icon");
final int _cursorIndexOfTitle = CursorUtil.getColumnIndexOrThrow(_cursor, "title");
final int _cursorIndexOfContent = CursorUtil.getColumnIndexOrThrow(_cursor, "content");
final int _cursorIndexOfImageUrl = CursorUtil.getColumnIndexOrThrow(_cursor, "image");
final int _cursorIndexOfQRCode = CursorUtil.getColumnIndexOrThrow(_cursor, "qr");
final int _cursorIndexOfMainSchema = CursorUtil.getColumnIndexOrThrow(_cursor, "scheme");
final int _cursorIndexOfTimestamp = CursorUtil.getColumnIndexOrThrow(_cursor, "timestamp");
final List<PushBean> _result = new ArrayList<PushBean>(_cursor.getCount());
while(_cursor.moveToNext()) {
final PushBean _item;
_item = new PushBean();
final String _tmpAppIcon;
if (_cursor.isNull(_cursorIndexOfAppIcon)) {
_tmpAppIcon = null;
} else {
_tmpAppIcon = _cursor.getString(_cursorIndexOfAppIcon);
}
_item.setAppIcon(_tmpAppIcon);
final String _tmpTitle;
if (_cursor.isNull(_cursorIndexOfTitle)) {
_tmpTitle = null;
} else {
_tmpTitle = _cursor.getString(_cursorIndexOfTitle);
}
_item.setTitle(_tmpTitle);
final String _tmpContent;
if (_cursor.isNull(_cursorIndexOfContent)) {
_tmpContent = null;
} else {
_tmpContent = _cursor.getString(_cursorIndexOfContent);
}
_item.setContent(_tmpContent);
final String _tmpImageUrl;
if (_cursor.isNull(_cursorIndexOfImageUrl)) {
_tmpImageUrl = null;
} else {
_tmpImageUrl = _cursor.getString(_cursorIndexOfImageUrl);
}
_item.setImageUrl(_tmpImageUrl);
final String _tmpQRCode;
if (_cursor.isNull(_cursorIndexOfQRCode)) {
_tmpQRCode = null;
} else {
_tmpQRCode = _cursor.getString(_cursorIndexOfQRCode);
}
_item.setQRCode(_tmpQRCode);
final String _tmpMainSchema;
if (_cursor.isNull(_cursorIndexOfMainSchema)) {
_tmpMainSchema = null;
} else {
_tmpMainSchema = _cursor.getString(_cursorIndexOfMainSchema);
}
_item.setMainSchema(_tmpMainSchema);
final long _tmpTimestamp;
_tmpTimestamp = _cursor.getLong(_cursorIndexOfTimestamp);
_item.setTimestamp(_tmpTimestamp);
_result.add(_item);
}
return _result;
} finally {
_cursor.close();
_statement.release();
}
}
@Override
public int getAllCount() {
final String _sql = "SELECT count(1) FROM pushBean";
final RoomSQLiteQuery _statement = RoomSQLiteQuery.acquire(_sql, 0);
__db.assertNotSuspendingTransaction();
final Cursor _cursor = DBUtil.query(__db, _statement, false, null);
try {
final int _result;
if(_cursor.moveToFirst()) {
_result = _cursor.getInt(0);
} else {
_result = 0;
}
return _result;
} finally {
_cursor.close();
_statement.release();
}
}
public static List<Class<?>> getRequiredConverters() {
return Collections.emptyList();
}
}

View File

@@ -0,0 +1,170 @@
package com.mogo.eagle.core.function.notice.dao;
import androidx.annotation.NonNull;
import androidx.room.DatabaseConfiguration;
import androidx.room.InvalidationTracker;
import androidx.room.RoomOpenHelper;
import androidx.room.RoomOpenHelper.Delegate;
import androidx.room.RoomOpenHelper.ValidationResult;
import androidx.room.migration.AutoMigrationSpec;
import androidx.room.migration.Migration;
import androidx.room.util.DBUtil;
import androidx.room.util.TableInfo;
import androidx.room.util.TableInfo.Column;
import androidx.room.util.TableInfo.ForeignKey;
import androidx.room.util.TableInfo.Index;
import androidx.sqlite.db.SupportSQLiteDatabase;
import androidx.sqlite.db.SupportSQLiteOpenHelper;
import androidx.sqlite.db.SupportSQLiteOpenHelper.Callback;
import androidx.sqlite.db.SupportSQLiteOpenHelper.Configuration;
import java.lang.Class;
import java.lang.Override;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
@SuppressWarnings({"unchecked", "deprecation"})
public final class PushBeanDatabase_Impl extends PushBeanDatabase {
private volatile PushBeanDao _pushBeanDao;
@Override
protected SupportSQLiteOpenHelper createOpenHelper(DatabaseConfiguration configuration) {
final SupportSQLiteOpenHelper.Callback _openCallback = new RoomOpenHelper(configuration, new RoomOpenHelper.Delegate(1) {
@Override
public void createAllTables(SupportSQLiteDatabase _db) {
_db.execSQL("CREATE TABLE IF NOT EXISTS `PushBean` (`icon` TEXT NOT NULL, `title` TEXT NOT NULL, `content` TEXT NOT NULL, `image` TEXT NOT NULL, `qr` TEXT NOT NULL, `scheme` TEXT NOT NULL, `timestamp` INTEGER NOT NULL, PRIMARY KEY(`timestamp`))");
_db.execSQL("CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)");
_db.execSQL("INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, 'a297c98624a6b7df90797298fa47318d')");
}
@Override
public void dropAllTables(SupportSQLiteDatabase _db) {
_db.execSQL("DROP TABLE IF EXISTS `PushBean`");
if (mCallbacks != null) {
for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) {
mCallbacks.get(_i).onDestructiveMigration(_db);
}
}
}
@Override
protected void onCreate(SupportSQLiteDatabase _db) {
if (mCallbacks != null) {
for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) {
mCallbacks.get(_i).onCreate(_db);
}
}
}
@Override
public void onOpen(SupportSQLiteDatabase _db) {
mDatabase = _db;
internalInitInvalidationTracker(_db);
if (mCallbacks != null) {
for (int _i = 0, _size = mCallbacks.size(); _i < _size; _i++) {
mCallbacks.get(_i).onOpen(_db);
}
}
}
@Override
public void onPreMigrate(SupportSQLiteDatabase _db) {
DBUtil.dropFtsSyncTriggers(_db);
}
@Override
public void onPostMigrate(SupportSQLiteDatabase _db) {
}
@Override
protected RoomOpenHelper.ValidationResult onValidateSchema(SupportSQLiteDatabase _db) {
final HashMap<String, TableInfo.Column> _columnsPushBean = new HashMap<String, TableInfo.Column>(7);
_columnsPushBean.put("icon", new TableInfo.Column("icon", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsPushBean.put("title", new TableInfo.Column("title", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsPushBean.put("content", new TableInfo.Column("content", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsPushBean.put("image", new TableInfo.Column("image", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsPushBean.put("qr", new TableInfo.Column("qr", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsPushBean.put("scheme", new TableInfo.Column("scheme", "TEXT", true, 0, null, TableInfo.CREATED_FROM_ENTITY));
_columnsPushBean.put("timestamp", new TableInfo.Column("timestamp", "INTEGER", true, 1, null, TableInfo.CREATED_FROM_ENTITY));
final HashSet<TableInfo.ForeignKey> _foreignKeysPushBean = new HashSet<TableInfo.ForeignKey>(0);
final HashSet<TableInfo.Index> _indicesPushBean = new HashSet<TableInfo.Index>(0);
final TableInfo _infoPushBean = new TableInfo("PushBean", _columnsPushBean, _foreignKeysPushBean, _indicesPushBean);
final TableInfo _existingPushBean = TableInfo.read(_db, "PushBean");
if (! _infoPushBean.equals(_existingPushBean)) {
return new RoomOpenHelper.ValidationResult(false, "PushBean(com.mogo.eagle.core.function.notice.model.PushBean).\n"
+ " Expected:\n" + _infoPushBean + "\n"
+ " Found:\n" + _existingPushBean);
}
return new RoomOpenHelper.ValidationResult(true, null);
}
}, "a297c98624a6b7df90797298fa47318d", "adc16c11fc70d272f68d66133676a431");
final SupportSQLiteOpenHelper.Configuration _sqliteConfig = SupportSQLiteOpenHelper.Configuration.builder(configuration.context)
.name(configuration.name)
.callback(_openCallback)
.build();
final SupportSQLiteOpenHelper _helper = configuration.sqliteOpenHelperFactory.create(_sqliteConfig);
return _helper;
}
@Override
protected InvalidationTracker createInvalidationTracker() {
final HashMap<String, String> _shadowTablesMap = new HashMap<String, String>(0);
HashMap<String, Set<String>> _viewTables = new HashMap<String, Set<String>>(0);
return new InvalidationTracker(this, _shadowTablesMap, _viewTables, "PushBean");
}
@Override
public void clearAllTables() {
super.assertNotMainThread();
final SupportSQLiteDatabase _db = super.getOpenHelper().getWritableDatabase();
try {
super.beginTransaction();
_db.execSQL("DELETE FROM `PushBean`");
super.setTransactionSuccessful();
} finally {
super.endTransaction();
_db.query("PRAGMA wal_checkpoint(FULL)").close();
if (!_db.inTransaction()) {
_db.execSQL("VACUUM");
}
}
}
@Override
protected Map<Class<?>, List<Class<?>>> getRequiredTypeConverters() {
final HashMap<Class<?>, List<Class<?>>> _typeConvertersMap = new HashMap<Class<?>, List<Class<?>>>();
_typeConvertersMap.put(PushBeanDao.class, PushBeanDao_Impl.getRequiredConverters());
return _typeConvertersMap;
}
@Override
public Set<Class<? extends AutoMigrationSpec>> getRequiredAutoMigrationSpecs() {
final HashSet<Class<? extends AutoMigrationSpec>> _autoMigrationSpecsSet = new HashSet<Class<? extends AutoMigrationSpec>>();
return _autoMigrationSpecsSet;
}
@Override
public List<Migration> getAutoMigrations(
@NonNull Map<Class<? extends AutoMigrationSpec>, AutoMigrationSpec> autoMigrationSpecsMap) {
return Arrays.asList();
}
@Override
public PushBeanDao pushBeanDao() {
if (_pushBeanDao != null) {
return _pushBeanDao;
} else {
synchronized(this) {
if(_pushBeanDao == null) {
_pushBeanDao = new PushBeanDao_Impl(this);
}
return _pushBeanDao;
}
}
}
}

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.eagle.core.function.notice"
android:versionCode="1"
android:versionName="0.0.58.10" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="21" />
<application>
<receiver android:name="com.mogo.eagle.core.function.notice.test.TestNoticeBroadcastReceiver" >
<intent-filter>
<action android:name="com.notice.test_notice_control" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>

View File

@@ -0,0 +1 @@
[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.0.58.10","enabled":true,"outputFile":"mogo-core-function-notice-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.eagle.core.function.notice","split":""}}]

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/src/main/jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/src/debug/jniLibs"/></dataSet></merger>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/src/main/shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/src/debug/shaders"/></dataSet></merger>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/src/main/assets"/><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/build/intermediates/shader_assets/debug/compileDebugShaders/out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="/Users/zd/Downloads/Android/MoGoEagleEye/core/mogo-core-data/src/debug/assets"/></dataSet></merger>

View File

@@ -0,0 +1,20 @@
#Tue Mar 28 17:15:15 CST 2023
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_close.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_close.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-ldpi/module_push_item_background_p.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_push_item_background_p.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_decrease_timer_bkg.xml=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_decrease_timer_bkg.xml
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_dialog_check_background.xml=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_dialog_check_background.xml
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_message_background.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_message_background.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-xhdpi/module_push_message_background.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_push_message_background.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_ui_delay_background.xml=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_ui_delay_background.xml
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-mdpi/module_push_item_background_p.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_push_item_background_p.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_content_background.xml=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_content_background.xml
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-ldpi/module_push_close.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_push_close.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-mdpi/module_push_message_background.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_push_message_background.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_ui_ic_message2.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_ui_ic_message2.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-xhdpi/module_push_dialog_close.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_push_dialog_close.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-ldpi/module_push_message_background.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_push_message_background.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-xhdpi/module_push_item_background_p.9.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_push_item_background_p.9.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-xhdpi/module_push_close.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_push_close.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable-mdpi/module_push_close.png=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_push_close.png
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_item_background.xml=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_item_background.xml
/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/res/drawable/module_push_item_background_origin.xml=/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/build/intermediates/packaged_res/debug/drawable/module_push_item_background_origin.xml

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_activity_clear_margin_bottom">36dp</dimen>
<dimen name="module_push_activity_close_margin_end">90dp</dimen>
<dimen name="module_push_activity_close_margin_top">20dp</dimen>
<dimen name="module_push_activity_close_padding">5dp</dimen>
<dimen name="module_push_activity_not_data_text_size">38dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">84dp</dimen>
<dimen name="module_push_activity_title_margin_top">28dp</dimen>
<dimen name="module_push_activity_title_text_size">20dp</dimen>
<dimen name="module_push_app_icon_margin_start">16.5dp</dimen>
<dimen name="module_push_app_icon_size">32dp</dimen>
<dimen name="module_push_button_height">48dp</dimen>
<dimen name="module_push_button_margin_bottom">14dp</dimen>
<dimen name="module_push_button_margin_top">10dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">27dp</dimen>
<dimen name="module_push_button_right_marLeft">10dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_clear_bg_radius">24dp</dimen>
<dimen name="module_push_content_only_height">160dp</dimen>
<dimen name="module_push_content_only_line_space">9dp</dimen>
<dimen name="module_push_content_only_padding">20dp</dimen>
<dimen name="module_push_content_only_width">320dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">60dp</dimen>
<dimen name="module_push_image_height">180dp</dimen>
<dimen name="module_push_image_marginTop_vertical">8dp</dimen>
<dimen name="module_push_image_margin_bottom">22dp</dimen>
<dimen name="module_push_image_margin_top">16dp</dimen>
<dimen name="module_push_image_qr_size_vertical">150dp</dimen>
<dimen name="module_push_image_radius">10dp</dimen>
<dimen name="module_push_image_width">320dp</dimen>
<dimen name="module_push_item_content_margin_bottom">27dp</dimen>
<dimen name="module_push_item_content_margin_end">20dp</dimen>
<dimen name="module_push_item_content_text_size">16dp</dimen>
<dimen name="module_push_item_content_width">560dp</dimen>
<dimen name="module_push_item_image_height">86dp</dimen>
<dimen name="module_push_item_image_radius">8dp</dimen>
<dimen name="module_push_item_image_width">118dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">310dp</dimen>
<dimen name="module_push_item_time_textSize">5dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">44dp</dimen>
<dimen name="module_push_item_title_margin_bottom">2dp</dimen>
<dimen name="module_push_item_title_margin_top">16dp</dimen>
<dimen name="module_push_margin_start">32dp</dimen>
<dimen name="module_push_margin_top">16dp</dimen>
<dimen name="module_push_massage_time_text_size">16dp</dimen>
<dimen name="module_push_message_app_icon_size">64dp</dimen>
<dimen name="module_push_message_item_height">100dp</dimen>
<dimen name="module_push_message_item_image_margin_end">8dp</dimen>
<dimen name="module_push_message_item_image_size">64dp</dimen>
<dimen name="module_push_message_margin_start">24dp</dimen>
<dimen name="module_push_panel_bkg_padding">8dp</dimen>
<dimen name="module_push_panel_corner">16dp</dimen>
<dimen name="module_push_panel_item_corner">12dp</dimen>
<dimen name="module_push_panel_marginBottom">2dp</dimen>
<dimen name="module_push_panel_marginRight">8dp</dimen>
<dimen name="module_push_panel_marginTop">2dp</dimen>
<dimen name="module_push_panel_paddingBottom">16dp</dimen>
<dimen name="module_push_panel_paddingLeft">28dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">19dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">17dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">11dp</dimen>
<dimen name="module_push_size">352dp</dimen>
<dimen name="module_push_timer_inner_radius">14dp</dimen>
<dimen name="module_push_timer_margin_end">13dp</dimen>
<dimen name="module_push_timer_margin_top">18dp</dimen>
<dimen name="module_push_timer_text_size">15dp</dimen>
<dimen name="module_push_timer_thickness">1.5dp</dimen>
<dimen name="module_push_title_margin_start">12dp</dimen>
<dimen name="module_push_title_margin_top">20dp</dimen>
<dimen name="module_push_title_mix_width">210dp</dimen>
<dimen name="module_push_title_text_size">18dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">19dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">12dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">24dp</dimen>
<dimen name="module_push_ui_app_icon_size">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">16dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">19dp</dimen>
<dimen name="module_push_ui_bkg_corner">17dp</dimen>
<dimen name="module_push_ui_button_radius">10dp</dimen>
<dimen name="module_push_ui_content_marginTop">6dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">15dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">8dp</dimen>
<dimen name="module_push_ui_height">194dp</dimen>
<dimen name="module_push_ui_height_vertical">270dp</dimen>
<dimen name="module_push_ui_image_corner">8dp</dimen>
<dimen name="module_push_ui_image_height">178dp</dimen>
<dimen name="module_push_ui_image_height_vertical">164dp</dimen>
<dimen name="module_push_ui_image_marLeft">8dp</dimen>
<dimen name="module_push_ui_image_width">266dp</dimen>
<dimen name="module_push_ui_image_width_vertical">328dp</dimen>
<dimen name="module_push_ui_timer_textSize">16dp</dimen>
<dimen name="module_push_ui_title_textSize">16dp</dimen>
<dimen name="module_push_ui_title_text_size">18dp</dimen>
<dimen name="module_push_ui_width_vertical">374dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
</resources>

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_activity_clear_margin_bottom">36dp</dimen>
<dimen name="module_push_activity_close_margin_end">90dp</dimen>
<dimen name="module_push_activity_close_margin_top">20dp</dimen>
<dimen name="module_push_activity_close_padding">5dp</dimen>
<dimen name="module_push_activity_not_data_text_size">38dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">84dp</dimen>
<dimen name="module_push_activity_title_margin_top">28dp</dimen>
<dimen name="module_push_activity_title_text_size">20dp</dimen>
<dimen name="module_push_app_icon_margin_start">16.5dp</dimen>
<dimen name="module_push_app_icon_size">32dp</dimen>
<dimen name="module_push_button_height">48dp</dimen>
<dimen name="module_push_button_margin_bottom">14dp</dimen>
<dimen name="module_push_button_margin_top">10dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">27dp</dimen>
<dimen name="module_push_button_right_marLeft">10dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_clear_bg_radius">24dp</dimen>
<dimen name="module_push_content_only_height">160dp</dimen>
<dimen name="module_push_content_only_line_space">9dp</dimen>
<dimen name="module_push_content_only_padding">20dp</dimen>
<dimen name="module_push_content_only_width">320dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">60dp</dimen>
<dimen name="module_push_image_height">180dp</dimen>
<dimen name="module_push_image_marginTop_vertical">8dp</dimen>
<dimen name="module_push_image_margin_bottom">22dp</dimen>
<dimen name="module_push_image_margin_top">16dp</dimen>
<dimen name="module_push_image_qr_size_vertical">150dp</dimen>
<dimen name="module_push_image_radius">10dp</dimen>
<dimen name="module_push_image_width">320dp</dimen>
<dimen name="module_push_item_content_margin_bottom">27dp</dimen>
<dimen name="module_push_item_content_margin_end">20dp</dimen>
<dimen name="module_push_item_content_text_size">16dp</dimen>
<dimen name="module_push_item_content_width">560dp</dimen>
<dimen name="module_push_item_image_height">86dp</dimen>
<dimen name="module_push_item_image_radius">8dp</dimen>
<dimen name="module_push_item_image_width">118dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">310dp</dimen>
<dimen name="module_push_item_time_textSize">5dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">44dp</dimen>
<dimen name="module_push_item_title_margin_bottom">2dp</dimen>
<dimen name="module_push_item_title_margin_top">16dp</dimen>
<dimen name="module_push_margin_start">32dp</dimen>
<dimen name="module_push_margin_top">16dp</dimen>
<dimen name="module_push_massage_time_text_size">16dp</dimen>
<dimen name="module_push_message_app_icon_size">64dp</dimen>
<dimen name="module_push_message_item_height">100dp</dimen>
<dimen name="module_push_message_item_image_margin_end">8dp</dimen>
<dimen name="module_push_message_item_image_size">64dp</dimen>
<dimen name="module_push_message_margin_start">24dp</dimen>
<dimen name="module_push_panel_bkg_padding">8dp</dimen>
<dimen name="module_push_panel_corner">16dp</dimen>
<dimen name="module_push_panel_item_corner">12dp</dimen>
<dimen name="module_push_panel_marginBottom">2dp</dimen>
<dimen name="module_push_panel_marginRight">8dp</dimen>
<dimen name="module_push_panel_marginTop">2dp</dimen>
<dimen name="module_push_panel_paddingBottom">16dp</dimen>
<dimen name="module_push_panel_paddingLeft">28dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">19dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">17dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">11dp</dimen>
<dimen name="module_push_size">352dp</dimen>
<dimen name="module_push_timer_inner_radius">14dp</dimen>
<dimen name="module_push_timer_margin_end">13dp</dimen>
<dimen name="module_push_timer_margin_top">18dp</dimen>
<dimen name="module_push_timer_text_size">15dp</dimen>
<dimen name="module_push_timer_thickness">1.5dp</dimen>
<dimen name="module_push_title_margin_start">12dp</dimen>
<dimen name="module_push_title_margin_top">20dp</dimen>
<dimen name="module_push_title_mix_width">210dp</dimen>
<dimen name="module_push_title_text_size">18dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">19dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">12dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">24dp</dimen>
<dimen name="module_push_ui_app_icon_size">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">16dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">19dp</dimen>
<dimen name="module_push_ui_bkg_corner">17dp</dimen>
<dimen name="module_push_ui_button_radius">10dp</dimen>
<dimen name="module_push_ui_content_marginTop">6dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">15dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">8dp</dimen>
<dimen name="module_push_ui_height">194dp</dimen>
<dimen name="module_push_ui_height_vertical">270dp</dimen>
<dimen name="module_push_ui_image_corner">8dp</dimen>
<dimen name="module_push_ui_image_height">178dp</dimen>
<dimen name="module_push_ui_image_height_vertical">164dp</dimen>
<dimen name="module_push_ui_image_marLeft">8dp</dimen>
<dimen name="module_push_ui_image_width">266dp</dimen>
<dimen name="module_push_ui_image_width_vertical">328dp</dimen>
<dimen name="module_push_ui_timer_textSize">16dp</dimen>
<dimen name="module_push_ui_title_textSize">16dp</dimen>
<dimen name="module_push_ui_title_text_size">18dp</dimen>
<dimen name="module_push_ui_width_vertical">374dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
</resources>

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_check_margin">55dp</dimen>
<dimen name="module_push_check_text_size">42dp</dimen>
<dimen name="module_push_check_width">208dp</dimen>
<dimen name="module_push_dialog_check_bg_corner">32dp</dimen>
<dimen name="module_push_dialog_check_height">763dp</dimen>
<dimen name="module_push_dialog_check_width">1200dp</dimen>
<dimen name="module_push_dialog_close_height">107dp</dimen>
<dimen name="module_push_dialog_close_margin">40dp</dimen>
<dimen name="module_push_dialog_close_width">107dp</dimen>
<dimen name="module_push_dialog_content_margin_top">33dp</dimen>
<dimen name="module_push_dialog_content_size">43dp</dimen>
<dimen name="module_push_dialog_content_width">1000dp</dimen>
<dimen name="module_push_dialog_title_margin">54dp</dimen>
<dimen name="module_push_dialog_title_size">56dp</dimen>
<dimen name="module_push_line_height">120dp</dimen>
<dimen name="module_push_line_margin_left">30dp</dimen>
<dimen name="module_push_line_width">2dp</dimen>
<dimen name="module_push_title_mix_width">394dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">33dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">21dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">34dp</dimen>
<dimen name="module_push_ui_content_height">100dp</dimen>
<dimen name="module_push_ui_content_marginBottom">34dp</dimen>
<dimen name="module_push_ui_content_marginTop">20dp</dimen>
<dimen name="module_push_ui_content_width">567dp</dimen>
<dimen name="module_push_ui_height">230dp</dimen>
<dimen name="module_push_ui_image_corner">30dp</dimen>
<dimen name="module_push_ui_image_height">230dp</dimen>
<dimen name="module_push_ui_image_width">230dp</dimen>
<dimen name="module_push_ui_margin_top">20dp</dimen>
<dimen name="module_push_ui_title_textSize">42dp</dimen>
<dimen name="module_push_ui_title_text_size">34dp</dimen>
</resources>

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_activity_clear_margin_bottom">68dp</dimen>
<dimen name="module_push_activity_close_margin_end">160dp</dimen>
<dimen name="module_push_activity_close_margin_top">36dp</dimen>
<dimen name="module_push_activity_close_padding">10dp</dimen>
<dimen name="module_push_activity_not_data_text_size">72dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">151dp</dimen>
<dimen name="module_push_activity_title_margin_top">50dp</dimen>
<dimen name="module_push_activity_title_text_size">36dp</dimen>
<dimen name="module_push_app_icon_margin_start">31dp</dimen>
<dimen name="module_push_app_icon_size">60dp</dimen>
<dimen name="module_push_button_height">90dp</dimen>
<dimen name="module_push_button_margin_bottom">26dp</dimen>
<dimen name="module_push_button_margin_top">20dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">51dp</dimen>
<dimen name="module_push_button_right_marLeft">20dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_clear_bg_radius">45dp</dimen>
<dimen name="module_push_content_only_height">300dp</dimen>
<dimen name="module_push_content_only_line_space">16dp</dimen>
<dimen name="module_push_content_only_padding">53dp</dimen>
<dimen name="module_push_content_only_width">605dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">120dp</dimen>
<dimen name="module_push_image_height">338dp</dimen>
<dimen name="module_push_image_marginTop_vertical">16dp</dimen>
<dimen name="module_push_image_margin_bottom">42dp</dimen>
<dimen name="module_push_image_margin_top">30dp</dimen>
<dimen name="module_push_image_qr_size_vertical">250dp</dimen>
<dimen name="module_push_image_radius">20dp</dimen>
<dimen name="module_push_image_width">600dp</dimen>
<dimen name="module_push_item_content_margin_bottom">52dp</dimen>
<dimen name="module_push_item_content_margin_end">40dp</dimen>
<dimen name="module_push_item_content_text_size">28dp</dimen>
<dimen name="module_push_item_content_width">1000dp</dimen>
<dimen name="module_push_item_image_height">154dp</dimen>
<dimen name="module_push_item_image_radius">16dp</dimen>
<dimen name="module_push_item_image_width">212dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">618dp</dimen>
<dimen name="module_push_item_time_textSize">11dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">84dp</dimen>
<dimen name="module_push_item_title_margin_bottom">6dp</dimen>
<dimen name="module_push_item_title_margin_top">22dp</dimen>
<dimen name="module_push_margin_start">60dp</dimen>
<dimen name="module_push_margin_top">30dp</dimen>
<dimen name="module_push_massage_time_text_size">26dp</dimen>
<dimen name="module_push_message_app_icon_size">120dp</dimen>
<dimen name="module_push_message_item_height">180dp</dimen>
<dimen name="module_push_message_item_image_margin_end">11dp</dimen>
<dimen name="module_push_message_item_image_size">120dp</dimen>
<dimen name="module_push_message_margin_start">50dp</dimen>
<dimen name="module_push_panel_bkg_padding">10dp</dimen>
<dimen name="module_push_panel_corner">29dp</dimen>
<dimen name="module_push_panel_item_corner">22dp</dimen>
<dimen name="module_push_panel_marginBottom">20dp</dimen>
<dimen name="module_push_panel_marginRight">20dp</dimen>
<dimen name="module_push_panel_marginTop">20dp</dimen>
<dimen name="module_push_panel_paddingBottom">28dp</dimen>
<dimen name="module_push_panel_paddingLeft">50dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">27dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">30dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">21dp</dimen>
<dimen name="module_push_size">660dp</dimen>
<dimen name="module_push_timer_inner_radius">27dp</dimen>
<dimen name="module_push_timer_margin_end">24dp</dimen>
<dimen name="module_push_timer_margin_top">34dp</dimen>
<dimen name="module_push_timer_text_size">28dp</dimen>
<dimen name="module_push_timer_thickness">3dp</dimen>
<dimen name="module_push_title_margin_start">22dp</dimen>
<dimen name="module_push_title_margin_top">38dp</dimen>
<dimen name="module_push_title_mix_width">394dp</dimen>
<dimen name="module_push_title_text_size">32dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">33dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">21dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">30dp</dimen>
<dimen name="module_push_ui_app_icon_size">50dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">33dp</dimen>
<dimen name="module_push_ui_bkg_corner">30dp</dimen>
<dimen name="module_push_ui_button_radius">20dp</dimen>
<dimen name="module_push_ui_content_marginTop">11dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">30dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">14dp</dimen>
<dimen name="module_push_ui_height">350dp</dimen>
<dimen name="module_push_ui_height_vertical">486dp</dimen>
<dimen name="module_push_ui_image_corner">15dp</dimen>
<dimen name="module_push_ui_image_height">320dp</dimen>
<dimen name="module_push_ui_image_height_vertical">296dp</dimen>
<dimen name="module_push_ui_image_marLeft">17dp</dimen>
<dimen name="module_push_ui_image_width">480dp</dimen>
<dimen name="module_push_ui_image_width_vertical">640dp</dimen>
<dimen name="module_push_ui_timer_textSize">30dp</dimen>
<dimen name="module_push_ui_title_textSize">30dp</dimen>
<dimen name="module_push_ui_title_text_size">34dp</dimen>
<dimen name="module_push_ui_width_vertical">700dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
</resources>

View File

@@ -0,0 +1,166 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="module_push_check_color">#5A8EFD</color>
<color name="module_push_check_dialog_bg_color">#E63B4577</color>
<color name="module_push_item_content_textColor">#B2FFFFFF</color>
<color name="module_push_item_line_color">#B3FFFFFF</color>
<color name="module_push_item_time_textColor">#999999</color>
<color name="module_push_item_title_textColor">#FFFFFF</color>
<color name="module_push_panel_title_textColor">#FFFFFFFF</color>
<dimen name="module_push_activity_clear_margin_bottom">36dp</dimen>
<dimen name="module_push_activity_close_margin_end">90dp</dimen>
<dimen name="module_push_activity_close_margin_top">20dp</dimen>
<dimen name="module_push_activity_close_padding">5dp</dimen>
<dimen name="module_push_activity_not_data_text_size">38dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">84dp</dimen>
<dimen name="module_push_activity_title_margin_top">50dp</dimen>
<dimen name="module_push_activity_title_text_size">20dp</dimen>
<dimen name="module_push_app_icon_margin_start">16.5dp</dimen>
<dimen name="module_push_app_icon_size">32dp</dimen>
<dimen name="module_push_button_height">48dp</dimen>
<dimen name="module_push_button_margin_bottom">14dp</dimen>
<dimen name="module_push_button_margin_top">10dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">27dp</dimen>
<dimen name="module_push_button_right_marLeft">10dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_check_margin">55dp</dimen>
<dimen name="module_push_check_text_size">42dp</dimen>
<dimen name="module_push_check_width">208dp</dimen>
<dimen name="module_push_clear_bg_radius">24dp</dimen>
<dimen name="module_push_content_only_height">160dp</dimen>
<dimen name="module_push_content_only_line_space">9dp</dimen>
<dimen name="module_push_content_only_padding">20dp</dimen>
<dimen name="module_push_content_only_width">320dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">60dp</dimen>
<dimen name="module_push_dialog_check_bg_corner">32dp</dimen>
<dimen name="module_push_dialog_check_height">763dp</dimen>
<dimen name="module_push_dialog_check_width">1200dp</dimen>
<dimen name="module_push_dialog_close_height">107dp</dimen>
<dimen name="module_push_dialog_close_margin">40dp</dimen>
<dimen name="module_push_dialog_close_width">107dp</dimen>
<dimen name="module_push_dialog_content_margin_top">33dp</dimen>
<dimen name="module_push_dialog_content_size">43dp</dimen>
<dimen name="module_push_dialog_content_width">1000dp</dimen>
<dimen name="module_push_dialog_title_margin">54dp</dimen>
<dimen name="module_push_dialog_title_size">56dp</dimen>
<dimen name="module_push_image_height">180dp</dimen>
<dimen name="module_push_image_marginTop_vertical">8dp</dimen>
<dimen name="module_push_image_margin_bottom">22dp</dimen>
<dimen name="module_push_image_margin_top">16dp</dimen>
<dimen name="module_push_image_qr_size_vertical">150dp</dimen>
<dimen name="module_push_image_radius">10dp</dimen>
<dimen name="module_push_image_width">320dp</dimen>
<dimen name="module_push_item_content_margin_bottom">27dp</dimen>
<dimen name="module_push_item_content_margin_end">20dp</dimen>
<dimen name="module_push_item_content_text_size">16dp</dimen>
<dimen name="module_push_item_content_width">560dp</dimen>
<dimen name="module_push_item_image_height">86dp</dimen>
<dimen name="module_push_item_image_radius">8dp</dimen>
<dimen name="module_push_item_image_width">118dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">310dp</dimen>
<dimen name="module_push_item_time_textSize">5dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">44dp</dimen>
<dimen name="module_push_item_title_margin_bottom">2dp</dimen>
<dimen name="module_push_item_title_margin_top">16dp</dimen>
<dimen name="module_push_line_height">120dp</dimen>
<dimen name="module_push_line_margin_left">30dp</dimen>
<dimen name="module_push_line_width">2dp</dimen>
<dimen name="module_push_margin_start">32dp</dimen>
<dimen name="module_push_margin_top">16dp</dimen>
<dimen name="module_push_massage_time_text_size">16dp</dimen>
<dimen name="module_push_message_app_icon_size">64dp</dimen>
<dimen name="module_push_message_item_height">100dp</dimen>
<dimen name="module_push_message_item_image_margin_end">8dp</dimen>
<dimen name="module_push_message_item_image_size">64dp</dimen>
<dimen name="module_push_message_margin_start">24dp</dimen>
<dimen name="module_push_panel_bkg_padding">8dp</dimen>
<dimen name="module_push_panel_corner">16dp</dimen>
<dimen name="module_push_panel_item_corner">12dp</dimen>
<dimen name="module_push_panel_marginBottom">2dp</dimen>
<dimen name="module_push_panel_marginRight">8dp</dimen>
<dimen name="module_push_panel_marginTop">2dp</dimen>
<dimen name="module_push_panel_paddingBottom">16dp</dimen>
<dimen name="module_push_panel_paddingLeft">28dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">19dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">17dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">11dp</dimen>
<dimen name="module_push_size">352dp</dimen>
<dimen name="module_push_timer_inner_radius">14dp</dimen>
<dimen name="module_push_timer_margin_end">13dp</dimen>
<dimen name="module_push_timer_margin_top">18dp</dimen>
<dimen name="module_push_timer_text_size">15dp</dimen>
<dimen name="module_push_timer_thickness">1.5dp</dimen>
<dimen name="module_push_title_margin_start">12dp</dimen>
<dimen name="module_push_title_margin_top">20dp</dimen>
<dimen name="module_push_title_mix_width">210dp</dimen>
<dimen name="module_push_title_text_size">18dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">19dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">12dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">24dp</dimen>
<dimen name="module_push_ui_app_icon_size">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">16dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">19dp</dimen>
<dimen name="module_push_ui_bkg_corner">17dp</dimen>
<dimen name="module_push_ui_button_radius">10dp</dimen>
<dimen name="module_push_ui_content_height">100dp</dimen>
<dimen name="module_push_ui_content_marginBottom">34dp</dimen>
<dimen name="module_push_ui_content_marginTop">6dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">15dp</dimen>
<dimen name="module_push_ui_content_width">567dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">8dp</dimen>
<dimen name="module_push_ui_height">194dp</dimen>
<dimen name="module_push_ui_height_vertical">270dp</dimen>
<dimen name="module_push_ui_image_corner">8dp</dimen>
<dimen name="module_push_ui_image_height">178dp</dimen>
<dimen name="module_push_ui_image_height_vertical">164dp</dimen>
<dimen name="module_push_ui_image_marLeft">8dp</dimen>
<dimen name="module_push_ui_image_width">266dp</dimen>
<dimen name="module_push_ui_image_width_vertical">328dp</dimen>
<dimen name="module_push_ui_margin_top">20dp</dimen>
<dimen name="module_push_ui_timer_textSize">16dp</dimen>
<dimen name="module_push_ui_title_textSize">16dp</dimen>
<dimen name="module_push_ui_title_text_size">18dp</dimen>
<dimen name="module_push_ui_width_vertical">374dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
<string name="app_name">mogo-core-function-notice</string>
<string name="module_push_check">查看</string>
<string name="module_push_str_clear">清空历史消息</string>
<string name="module_push_str_delete">清除</string>
<string name="module_push_str_not_data">暂无消息</string>
<style name="ModulePushMessageTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
<item name="android:windowBackground">@drawable/module_push_message_background</item>
</style>
<declare-styleable name="RoundedImageView">
<attr format="dimension" name="riv_corner_radius"/>
<attr format="dimension" name="riv_corner_radius_top_left"/>
<attr format="dimension" name="riv_corner_radius_top_right"/>
<attr format="dimension" name="riv_corner_radius_bottom_left"/>
<attr format="dimension" name="riv_corner_radius_bottom_right"/>
<attr format="dimension" name="riv_border_width"/>
<attr format="color" name="riv_border_color"/>
<attr format="boolean" name="riv_mutate_background"/>
<attr format="boolean" name="riv_oval"/>
<attr name="android:scaleType"/>
<attr name="riv_tile_Mode">
<enum name="clamp" value="0"/>
<enum name="repeat" value="1"/>
<enum name="mirror" value="2"/>
</attr>
<attr name="riv_tile_Mode_x">
<enum name="clamp" value="0"/>
<enum name="repeat" value="1"/>
<enum name="mirror" value="2"/>
</attr>
<attr name="riv_tile_Mode_y">
<enum name="clamp" value="0"/>
<enum name="repeat" value="1"/>
<enum name="mirror" value="2"/>
</attr>
</declare-styleable>
</resources>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mogo.eagle.core.function.notice"
android:versionCode="1"
android:versionName="0.0.58.10" >
<uses-sdk
android:minSdkVersion="21"
android:targetSdkVersion="21" />
<application>
<receiver android:name="com.mogo.eagle.core.function.notice.test.TestNoticeBroadcastReceiver" >
<intent-filter>
<action android:name="com.notice.test_notice_control" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
</application>
</manifest>

View File

@@ -0,0 +1,160 @@
R_DEF: Internal format may change without notice
local
attr? riv_border_color
attr? riv_border_width
attr? riv_corner_radius
attr? riv_corner_radius_bottom_left
attr? riv_corner_radius_bottom_right
attr? riv_corner_radius_top_left
attr? riv_corner_radius_top_right
attr? riv_mutate_background
attr? riv_oval
attr? riv_tile_Mode
attr? riv_tile_Mode_x
attr? riv_tile_Mode_y
color module_push_check_color
color module_push_check_dialog_bg_color
color module_push_item_content_textColor
color module_push_item_line_color
color module_push_item_time_textColor
color module_push_item_title_textColor
color module_push_panel_title_textColor
dimen module_push_activity_clear_margin_bottom
dimen module_push_activity_close_margin_end
dimen module_push_activity_close_margin_top
dimen module_push_activity_close_padding
dimen module_push_activity_not_data_text_size
dimen module_push_activity_recycler_view_margin_top
dimen module_push_activity_title_margin_top
dimen module_push_activity_title_text_size
dimen module_push_app_icon_margin_start
dimen module_push_app_icon_size
dimen module_push_button_height
dimen module_push_button_margin_bottom
dimen module_push_button_margin_top
dimen module_push_button_maxWidth
dimen module_push_button_radius
dimen module_push_button_right_marLeft
dimen module_push_button_width
dimen module_push_check_margin
dimen module_push_check_text_size
dimen module_push_check_width
dimen module_push_clear_bg_radius
dimen module_push_content_only_height
dimen module_push_content_only_line_space
dimen module_push_content_only_padding
dimen module_push_content_only_width
dimen module_push_content_paddingBottom_vertical
dimen module_push_dialog_check_bg_corner
dimen module_push_dialog_check_height
dimen module_push_dialog_check_width
dimen module_push_dialog_close_height
dimen module_push_dialog_close_margin
dimen module_push_dialog_close_width
dimen module_push_dialog_content_margin_top
dimen module_push_dialog_content_size
dimen module_push_dialog_content_width
dimen module_push_dialog_title_margin
dimen module_push_dialog_title_size
dimen module_push_image_height
dimen module_push_image_marginTop_vertical
dimen module_push_image_margin_bottom
dimen module_push_image_margin_top
dimen module_push_image_qr_size_vertical
dimen module_push_image_radius
dimen module_push_image_width
dimen module_push_item_content_margin_bottom
dimen module_push_item_content_margin_end
dimen module_push_item_content_text_size
dimen module_push_item_content_width
dimen module_push_item_image_height
dimen module_push_item_image_radius
dimen module_push_item_image_width
dimen module_push_item_maxHeight_vertical
dimen module_push_item_minHeight_vertical
dimen module_push_item_time_textSize
dimen module_push_item_title_gone_margin_bottom
dimen module_push_item_title_margin_bottom
dimen module_push_item_title_margin_top
dimen module_push_line_height
dimen module_push_line_margin_left
dimen module_push_line_width
dimen module_push_margin_start
dimen module_push_margin_top
dimen module_push_massage_time_text_size
dimen module_push_message_app_icon_size
dimen module_push_message_item_height
dimen module_push_message_item_image_margin_end
dimen module_push_message_item_image_size
dimen module_push_message_margin_start
dimen module_push_panel_bkg_padding
dimen module_push_panel_corner
dimen module_push_panel_item_corner
dimen module_push_panel_marginBottom
dimen module_push_panel_marginRight
dimen module_push_panel_marginTop
dimen module_push_panel_paddingBottom
dimen module_push_panel_paddingLeft
dimen module_push_progress_bar_frame_marginEnd
dimen module_push_progress_bar_frame_marginTop
dimen module_push_progress_bar_frame_padding
dimen module_push_size
dimen module_push_timer_inner_radius
dimen module_push_timer_margin_end
dimen module_push_timer_margin_top
dimen module_push_timer_text_size
dimen module_push_timer_thickness
dimen module_push_title_margin_start
dimen module_push_title_margin_top
dimen module_push_title_mix_width
dimen module_push_title_text_size
dimen module_push_ui_app_icon_goneTopMargin
dimen module_push_ui_app_icon_leftMargin
dimen module_push_ui_app_icon_leftMargin_vertical
dimen module_push_ui_app_icon_size
dimen module_push_ui_app_icon_topMargin
dimen module_push_ui_app_icon_topMargin_vertical
dimen module_push_ui_bkg_corner
dimen module_push_ui_button_radius
dimen module_push_ui_content_height
dimen module_push_ui_content_marginBottom
dimen module_push_ui_content_marginTop
dimen module_push_ui_content_marginTop_vertical
dimen module_push_ui_content_width
dimen module_push_ui_decrease_timer_corner
dimen module_push_ui_height
dimen module_push_ui_height_vertical
dimen module_push_ui_image_corner
dimen module_push_ui_image_height
dimen module_push_ui_image_height_vertical
dimen module_push_ui_image_marLeft
dimen module_push_ui_image_width
dimen module_push_ui_image_width_vertical
dimen module_push_ui_margin_top
dimen module_push_ui_timer_textSize
dimen module_push_ui_title_textSize
dimen module_push_ui_title_text_size
dimen module_push_ui_width_vertical
dimen module_push_window_x
dimen module_push_window_y
drawable module_push_close
drawable module_push_content_background
drawable module_push_decrease_timer_bkg
drawable module_push_dialog_check_background
drawable module_push_dialog_close
drawable module_push_item_background
drawable module_push_item_background_origin
drawable module_push_item_background_p
drawable module_push_message_background
drawable module_push_ui_delay_background
drawable module_push_ui_ic_message2
id clamp
id mirror
id repeat
string app_name
string module_push_check
string module_push_str_clear
string module_push_str_delete
string module_push_str_not_data
style ModulePushMessageTheme
styleable RoundedImageView riv_corner_radius riv_corner_radius_top_left riv_corner_radius_top_right riv_corner_radius_bottom_left riv_corner_radius_bottom_right riv_border_width riv_border_color riv_mutate_background riv_oval android:scaleType riv_tile_Mode riv_tile_Mode_x riv_tile_Mode_y

View File

@@ -0,0 +1,31 @@
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.mogo.eagle.core.function.notice"
4 android:versionCode="1"
5 android:versionName="0.0.58.10" >
6
7 <uses-sdk
8 android:minSdkVersion="21"
8-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
9 android:targetSdkVersion="21" />
9-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
10
11 <application>
11-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:5:5-13:19
12 <receiver android:name="com.mogo.eagle.core.function.notice.test.TestNoticeBroadcastReceiver" >
12-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:6:9-12:20
12-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:6:19-67
13 <intent-filter>
13-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:7:13-11:29
14 <action android:name="com.notice.test_notice_control" />
14-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:8:17-73
14-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:8:25-70
15
16 <category android:name="android.intent.category.DEFAULT" />
16-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:10:17-76
16-->/Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:10:27-73
17 </intent-filter>
18 </receiver>
19 </application>
20
21</manifest>

View File

@@ -0,0 +1 @@
[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"0.0.58.10","enabled":true,"outputFile":"mogo-core-function-notice-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.eagle.core.function.notice","split":""}}]

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="@dimen/module_push_content_only_line_space" />
<solid android:color="#222533" />
</shape>

View File

@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<corners android:radius="@dimen/module_push_ui_decrease_timer_corner"/>
<solid android:color="#7F000000"/>
</shape>
</item>
</selector>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/module_push_check_dialog_bg_color" />
<corners android:radius="@dimen/module_push_dialog_check_bg_corner" />
</shape>

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?><!--<selector xmlns:android="http://schemas.android.com/apk/res/android">-->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="135"
android:endColor="#33000000"
android:startColor="#33000000"
android:type="linear" />
<corners android:radius="@dimen/module_push_ui_bkg_corner" />
</shape>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="@dimen/module_push_ui_bkg_corner" />
<solid android:color="#F23F4057" />
</shape>

View File

@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="360">
<shape
android:innerRadius="@dimen/module_push_timer_inner_radius"
android:shape="ring"
android:thickness="@dimen/module_push_timer_thickness"
android:useLevel="false">
<gradient
android:centerY="0.50"
android:endColor="#001F7FFF"
android:startColor="#7A8199"
android:type="sweep"
android:useLevel="false" />
</shape>
</rotate>

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_activity_clear_margin_bottom">36dp</dimen>
<dimen name="module_push_activity_close_margin_end">90dp</dimen>
<dimen name="module_push_activity_close_margin_top">20dp</dimen>
<dimen name="module_push_activity_close_padding">5dp</dimen>
<dimen name="module_push_activity_not_data_text_size">38dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">84dp</dimen>
<dimen name="module_push_activity_title_margin_top">28dp</dimen>
<dimen name="module_push_activity_title_text_size">20dp</dimen>
<dimen name="module_push_app_icon_margin_start">16.5dp</dimen>
<dimen name="module_push_app_icon_size">32dp</dimen>
<dimen name="module_push_button_height">48dp</dimen>
<dimen name="module_push_button_margin_bottom">14dp</dimen>
<dimen name="module_push_button_margin_top">10dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">27dp</dimen>
<dimen name="module_push_button_right_marLeft">10dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_clear_bg_radius">24dp</dimen>
<dimen name="module_push_content_only_height">160dp</dimen>
<dimen name="module_push_content_only_line_space">9dp</dimen>
<dimen name="module_push_content_only_padding">20dp</dimen>
<dimen name="module_push_content_only_width">320dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">60dp</dimen>
<dimen name="module_push_image_height">180dp</dimen>
<dimen name="module_push_image_marginTop_vertical">8dp</dimen>
<dimen name="module_push_image_margin_bottom">22dp</dimen>
<dimen name="module_push_image_margin_top">16dp</dimen>
<dimen name="module_push_image_qr_size_vertical">150dp</dimen>
<dimen name="module_push_image_radius">10dp</dimen>
<dimen name="module_push_image_width">320dp</dimen>
<dimen name="module_push_item_content_margin_bottom">27dp</dimen>
<dimen name="module_push_item_content_margin_end">20dp</dimen>
<dimen name="module_push_item_content_text_size">16dp</dimen>
<dimen name="module_push_item_content_width">560dp</dimen>
<dimen name="module_push_item_image_height">86dp</dimen>
<dimen name="module_push_item_image_radius">8dp</dimen>
<dimen name="module_push_item_image_width">118dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">310dp</dimen>
<dimen name="module_push_item_time_textSize">5dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">44dp</dimen>
<dimen name="module_push_item_title_margin_bottom">2dp</dimen>
<dimen name="module_push_item_title_margin_top">16dp</dimen>
<dimen name="module_push_margin_start">32dp</dimen>
<dimen name="module_push_margin_top">16dp</dimen>
<dimen name="module_push_massage_time_text_size">16dp</dimen>
<dimen name="module_push_message_app_icon_size">64dp</dimen>
<dimen name="module_push_message_item_height">100dp</dimen>
<dimen name="module_push_message_item_image_margin_end">8dp</dimen>
<dimen name="module_push_message_item_image_size">64dp</dimen>
<dimen name="module_push_message_margin_start">24dp</dimen>
<dimen name="module_push_panel_bkg_padding">8dp</dimen>
<dimen name="module_push_panel_corner">16dp</dimen>
<dimen name="module_push_panel_item_corner">12dp</dimen>
<dimen name="module_push_panel_marginBottom">2dp</dimen>
<dimen name="module_push_panel_marginRight">8dp</dimen>
<dimen name="module_push_panel_marginTop">2dp</dimen>
<dimen name="module_push_panel_paddingBottom">16dp</dimen>
<dimen name="module_push_panel_paddingLeft">28dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">19dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">17dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">11dp</dimen>
<dimen name="module_push_size">352dp</dimen>
<dimen name="module_push_timer_inner_radius">14dp</dimen>
<dimen name="module_push_timer_margin_end">13dp</dimen>
<dimen name="module_push_timer_margin_top">18dp</dimen>
<dimen name="module_push_timer_text_size">15dp</dimen>
<dimen name="module_push_timer_thickness">1.5dp</dimen>
<dimen name="module_push_title_margin_start">12dp</dimen>
<dimen name="module_push_title_margin_top">20dp</dimen>
<dimen name="module_push_title_mix_width">210dp</dimen>
<dimen name="module_push_title_text_size">18dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">19dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">12dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">24dp</dimen>
<dimen name="module_push_ui_app_icon_size">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">16dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">19dp</dimen>
<dimen name="module_push_ui_bkg_corner">17dp</dimen>
<dimen name="module_push_ui_button_radius">10dp</dimen>
<dimen name="module_push_ui_content_marginTop">6dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">15dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">8dp</dimen>
<dimen name="module_push_ui_height">194dp</dimen>
<dimen name="module_push_ui_height_vertical">270dp</dimen>
<dimen name="module_push_ui_image_corner">8dp</dimen>
<dimen name="module_push_ui_image_height">178dp</dimen>
<dimen name="module_push_ui_image_height_vertical">164dp</dimen>
<dimen name="module_push_ui_image_marLeft">8dp</dimen>
<dimen name="module_push_ui_image_width">266dp</dimen>
<dimen name="module_push_ui_image_width_vertical">328dp</dimen>
<dimen name="module_push_ui_timer_textSize">16dp</dimen>
<dimen name="module_push_ui_title_textSize">16dp</dimen>
<dimen name="module_push_ui_title_text_size">18dp</dimen>
<dimen name="module_push_ui_width_vertical">374dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
</resources>

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_activity_clear_margin_bottom">36dp</dimen>
<dimen name="module_push_activity_close_margin_end">90dp</dimen>
<dimen name="module_push_activity_close_margin_top">20dp</dimen>
<dimen name="module_push_activity_close_padding">5dp</dimen>
<dimen name="module_push_activity_not_data_text_size">38dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">84dp</dimen>
<dimen name="module_push_activity_title_margin_top">28dp</dimen>
<dimen name="module_push_activity_title_text_size">20dp</dimen>
<dimen name="module_push_app_icon_margin_start">16.5dp</dimen>
<dimen name="module_push_app_icon_size">32dp</dimen>
<dimen name="module_push_button_height">48dp</dimen>
<dimen name="module_push_button_margin_bottom">14dp</dimen>
<dimen name="module_push_button_margin_top">10dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">27dp</dimen>
<dimen name="module_push_button_right_marLeft">10dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_clear_bg_radius">24dp</dimen>
<dimen name="module_push_content_only_height">160dp</dimen>
<dimen name="module_push_content_only_line_space">9dp</dimen>
<dimen name="module_push_content_only_padding">20dp</dimen>
<dimen name="module_push_content_only_width">320dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">60dp</dimen>
<dimen name="module_push_image_height">180dp</dimen>
<dimen name="module_push_image_marginTop_vertical">8dp</dimen>
<dimen name="module_push_image_margin_bottom">22dp</dimen>
<dimen name="module_push_image_margin_top">16dp</dimen>
<dimen name="module_push_image_qr_size_vertical">150dp</dimen>
<dimen name="module_push_image_radius">10dp</dimen>
<dimen name="module_push_image_width">320dp</dimen>
<dimen name="module_push_item_content_margin_bottom">27dp</dimen>
<dimen name="module_push_item_content_margin_end">20dp</dimen>
<dimen name="module_push_item_content_text_size">16dp</dimen>
<dimen name="module_push_item_content_width">560dp</dimen>
<dimen name="module_push_item_image_height">86dp</dimen>
<dimen name="module_push_item_image_radius">8dp</dimen>
<dimen name="module_push_item_image_width">118dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">310dp</dimen>
<dimen name="module_push_item_time_textSize">5dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">44dp</dimen>
<dimen name="module_push_item_title_margin_bottom">2dp</dimen>
<dimen name="module_push_item_title_margin_top">16dp</dimen>
<dimen name="module_push_margin_start">32dp</dimen>
<dimen name="module_push_margin_top">16dp</dimen>
<dimen name="module_push_massage_time_text_size">16dp</dimen>
<dimen name="module_push_message_app_icon_size">64dp</dimen>
<dimen name="module_push_message_item_height">100dp</dimen>
<dimen name="module_push_message_item_image_margin_end">8dp</dimen>
<dimen name="module_push_message_item_image_size">64dp</dimen>
<dimen name="module_push_message_margin_start">24dp</dimen>
<dimen name="module_push_panel_bkg_padding">8dp</dimen>
<dimen name="module_push_panel_corner">16dp</dimen>
<dimen name="module_push_panel_item_corner">12dp</dimen>
<dimen name="module_push_panel_marginBottom">2dp</dimen>
<dimen name="module_push_panel_marginRight">8dp</dimen>
<dimen name="module_push_panel_marginTop">2dp</dimen>
<dimen name="module_push_panel_paddingBottom">16dp</dimen>
<dimen name="module_push_panel_paddingLeft">28dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">19dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">17dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">11dp</dimen>
<dimen name="module_push_size">352dp</dimen>
<dimen name="module_push_timer_inner_radius">14dp</dimen>
<dimen name="module_push_timer_margin_end">13dp</dimen>
<dimen name="module_push_timer_margin_top">18dp</dimen>
<dimen name="module_push_timer_text_size">15dp</dimen>
<dimen name="module_push_timer_thickness">1.5dp</dimen>
<dimen name="module_push_title_margin_start">12dp</dimen>
<dimen name="module_push_title_margin_top">20dp</dimen>
<dimen name="module_push_title_mix_width">210dp</dimen>
<dimen name="module_push_title_text_size">18dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">19dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">12dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">24dp</dimen>
<dimen name="module_push_ui_app_icon_size">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">16dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">19dp</dimen>
<dimen name="module_push_ui_bkg_corner">17dp</dimen>
<dimen name="module_push_ui_button_radius">10dp</dimen>
<dimen name="module_push_ui_content_marginTop">6dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">15dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">8dp</dimen>
<dimen name="module_push_ui_height">194dp</dimen>
<dimen name="module_push_ui_height_vertical">270dp</dimen>
<dimen name="module_push_ui_image_corner">8dp</dimen>
<dimen name="module_push_ui_image_height">178dp</dimen>
<dimen name="module_push_ui_image_height_vertical">164dp</dimen>
<dimen name="module_push_ui_image_marLeft">8dp</dimen>
<dimen name="module_push_ui_image_width">266dp</dimen>
<dimen name="module_push_ui_image_width_vertical">328dp</dimen>
<dimen name="module_push_ui_timer_textSize">16dp</dimen>
<dimen name="module_push_ui_title_textSize">16dp</dimen>
<dimen name="module_push_ui_title_text_size">18dp</dimen>
<dimen name="module_push_ui_width_vertical">374dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
</resources>

View File

@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_check_margin">55dp</dimen>
<dimen name="module_push_check_text_size">42dp</dimen>
<dimen name="module_push_check_width">208dp</dimen>
<dimen name="module_push_dialog_check_bg_corner">32dp</dimen>
<dimen name="module_push_dialog_check_height">763dp</dimen>
<dimen name="module_push_dialog_check_width">1200dp</dimen>
<dimen name="module_push_dialog_close_height">107dp</dimen>
<dimen name="module_push_dialog_close_margin">40dp</dimen>
<dimen name="module_push_dialog_close_width">107dp</dimen>
<dimen name="module_push_dialog_content_margin_top">33dp</dimen>
<dimen name="module_push_dialog_content_size">43dp</dimen>
<dimen name="module_push_dialog_content_width">1000dp</dimen>
<dimen name="module_push_dialog_title_margin">54dp</dimen>
<dimen name="module_push_dialog_title_size">56dp</dimen>
<dimen name="module_push_line_height">120dp</dimen>
<dimen name="module_push_line_margin_left">30dp</dimen>
<dimen name="module_push_line_width">2dp</dimen>
<dimen name="module_push_title_mix_width">394dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">33dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">21dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">34dp</dimen>
<dimen name="module_push_ui_content_height">100dp</dimen>
<dimen name="module_push_ui_content_marginBottom">34dp</dimen>
<dimen name="module_push_ui_content_marginTop">20dp</dimen>
<dimen name="module_push_ui_content_width">567dp</dimen>
<dimen name="module_push_ui_height">230dp</dimen>
<dimen name="module_push_ui_image_corner">30dp</dimen>
<dimen name="module_push_ui_image_height">230dp</dimen>
<dimen name="module_push_ui_image_width">230dp</dimen>
<dimen name="module_push_ui_margin_top">20dp</dimen>
<dimen name="module_push_ui_title_textSize">42dp</dimen>
<dimen name="module_push_ui_title_text_size">34dp</dimen>
</resources>

View File

@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="module_push_activity_clear_margin_bottom">68dp</dimen>
<dimen name="module_push_activity_close_margin_end">160dp</dimen>
<dimen name="module_push_activity_close_margin_top">36dp</dimen>
<dimen name="module_push_activity_close_padding">10dp</dimen>
<dimen name="module_push_activity_not_data_text_size">72dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">151dp</dimen>
<dimen name="module_push_activity_title_margin_top">50dp</dimen>
<dimen name="module_push_activity_title_text_size">36dp</dimen>
<dimen name="module_push_app_icon_margin_start">31dp</dimen>
<dimen name="module_push_app_icon_size">60dp</dimen>
<dimen name="module_push_button_height">90dp</dimen>
<dimen name="module_push_button_margin_bottom">26dp</dimen>
<dimen name="module_push_button_margin_top">20dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">51dp</dimen>
<dimen name="module_push_button_right_marLeft">20dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_clear_bg_radius">45dp</dimen>
<dimen name="module_push_content_only_height">300dp</dimen>
<dimen name="module_push_content_only_line_space">16dp</dimen>
<dimen name="module_push_content_only_padding">53dp</dimen>
<dimen name="module_push_content_only_width">605dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">120dp</dimen>
<dimen name="module_push_image_height">338dp</dimen>
<dimen name="module_push_image_marginTop_vertical">16dp</dimen>
<dimen name="module_push_image_margin_bottom">42dp</dimen>
<dimen name="module_push_image_margin_top">30dp</dimen>
<dimen name="module_push_image_qr_size_vertical">250dp</dimen>
<dimen name="module_push_image_radius">20dp</dimen>
<dimen name="module_push_image_width">600dp</dimen>
<dimen name="module_push_item_content_margin_bottom">52dp</dimen>
<dimen name="module_push_item_content_margin_end">40dp</dimen>
<dimen name="module_push_item_content_text_size">28dp</dimen>
<dimen name="module_push_item_content_width">1000dp</dimen>
<dimen name="module_push_item_image_height">154dp</dimen>
<dimen name="module_push_item_image_radius">16dp</dimen>
<dimen name="module_push_item_image_width">212dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">618dp</dimen>
<dimen name="module_push_item_time_textSize">11dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">84dp</dimen>
<dimen name="module_push_item_title_margin_bottom">6dp</dimen>
<dimen name="module_push_item_title_margin_top">22dp</dimen>
<dimen name="module_push_margin_start">60dp</dimen>
<dimen name="module_push_margin_top">30dp</dimen>
<dimen name="module_push_massage_time_text_size">26dp</dimen>
<dimen name="module_push_message_app_icon_size">120dp</dimen>
<dimen name="module_push_message_item_height">180dp</dimen>
<dimen name="module_push_message_item_image_margin_end">11dp</dimen>
<dimen name="module_push_message_item_image_size">120dp</dimen>
<dimen name="module_push_message_margin_start">50dp</dimen>
<dimen name="module_push_panel_bkg_padding">10dp</dimen>
<dimen name="module_push_panel_corner">29dp</dimen>
<dimen name="module_push_panel_item_corner">22dp</dimen>
<dimen name="module_push_panel_marginBottom">20dp</dimen>
<dimen name="module_push_panel_marginRight">20dp</dimen>
<dimen name="module_push_panel_marginTop">20dp</dimen>
<dimen name="module_push_panel_paddingBottom">28dp</dimen>
<dimen name="module_push_panel_paddingLeft">50dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">27dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">30dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">21dp</dimen>
<dimen name="module_push_size">660dp</dimen>
<dimen name="module_push_timer_inner_radius">27dp</dimen>
<dimen name="module_push_timer_margin_end">24dp</dimen>
<dimen name="module_push_timer_margin_top">34dp</dimen>
<dimen name="module_push_timer_text_size">28dp</dimen>
<dimen name="module_push_timer_thickness">3dp</dimen>
<dimen name="module_push_title_margin_start">22dp</dimen>
<dimen name="module_push_title_margin_top">38dp</dimen>
<dimen name="module_push_title_mix_width">394dp</dimen>
<dimen name="module_push_title_text_size">32dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">33dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">21dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">30dp</dimen>
<dimen name="module_push_ui_app_icon_size">50dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">33dp</dimen>
<dimen name="module_push_ui_bkg_corner">30dp</dimen>
<dimen name="module_push_ui_button_radius">20dp</dimen>
<dimen name="module_push_ui_content_marginTop">11dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">30dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">14dp</dimen>
<dimen name="module_push_ui_height">350dp</dimen>
<dimen name="module_push_ui_height_vertical">486dp</dimen>
<dimen name="module_push_ui_image_corner">15dp</dimen>
<dimen name="module_push_ui_image_height">320dp</dimen>
<dimen name="module_push_ui_image_height_vertical">296dp</dimen>
<dimen name="module_push_ui_image_marLeft">17dp</dimen>
<dimen name="module_push_ui_image_width">480dp</dimen>
<dimen name="module_push_ui_image_width_vertical">640dp</dimen>
<dimen name="module_push_ui_timer_textSize">30dp</dimen>
<dimen name="module_push_ui_title_textSize">30dp</dimen>
<dimen name="module_push_ui_title_text_size">34dp</dimen>
<dimen name="module_push_ui_width_vertical">700dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
</resources>

View File

@@ -0,0 +1,166 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="module_push_check_color">#5A8EFD</color>
<color name="module_push_check_dialog_bg_color">#E63B4577</color>
<color name="module_push_item_content_textColor">#B2FFFFFF</color>
<color name="module_push_item_line_color">#B3FFFFFF</color>
<color name="module_push_item_time_textColor">#999999</color>
<color name="module_push_item_title_textColor">#FFFFFF</color>
<color name="module_push_panel_title_textColor">#FFFFFFFF</color>
<dimen name="module_push_activity_clear_margin_bottom">36dp</dimen>
<dimen name="module_push_activity_close_margin_end">90dp</dimen>
<dimen name="module_push_activity_close_margin_top">20dp</dimen>
<dimen name="module_push_activity_close_padding">5dp</dimen>
<dimen name="module_push_activity_not_data_text_size">38dp</dimen>
<dimen name="module_push_activity_recycler_view_margin_top">84dp</dimen>
<dimen name="module_push_activity_title_margin_top">50dp</dimen>
<dimen name="module_push_activity_title_text_size">20dp</dimen>
<dimen name="module_push_app_icon_margin_start">16.5dp</dimen>
<dimen name="module_push_app_icon_size">32dp</dimen>
<dimen name="module_push_button_height">48dp</dimen>
<dimen name="module_push_button_margin_bottom">14dp</dimen>
<dimen name="module_push_button_margin_top">10dp</dimen>
<dimen name="module_push_button_maxWidth">242dp</dimen>
<dimen name="module_push_button_radius">27dp</dimen>
<dimen name="module_push_button_right_marLeft">10dp</dimen>
<dimen name="module_push_button_width">0dp</dimen>
<dimen name="module_push_check_margin">55dp</dimen>
<dimen name="module_push_check_text_size">42dp</dimen>
<dimen name="module_push_check_width">208dp</dimen>
<dimen name="module_push_clear_bg_radius">24dp</dimen>
<dimen name="module_push_content_only_height">160dp</dimen>
<dimen name="module_push_content_only_line_space">9dp</dimen>
<dimen name="module_push_content_only_padding">20dp</dimen>
<dimen name="module_push_content_only_width">320dp</dimen>
<dimen name="module_push_content_paddingBottom_vertical">60dp</dimen>
<dimen name="module_push_dialog_check_bg_corner">32dp</dimen>
<dimen name="module_push_dialog_check_height">763dp</dimen>
<dimen name="module_push_dialog_check_width">1200dp</dimen>
<dimen name="module_push_dialog_close_height">107dp</dimen>
<dimen name="module_push_dialog_close_margin">40dp</dimen>
<dimen name="module_push_dialog_close_width">107dp</dimen>
<dimen name="module_push_dialog_content_margin_top">33dp</dimen>
<dimen name="module_push_dialog_content_size">43dp</dimen>
<dimen name="module_push_dialog_content_width">1000dp</dimen>
<dimen name="module_push_dialog_title_margin">54dp</dimen>
<dimen name="module_push_dialog_title_size">56dp</dimen>
<dimen name="module_push_image_height">180dp</dimen>
<dimen name="module_push_image_marginTop_vertical">8dp</dimen>
<dimen name="module_push_image_margin_bottom">22dp</dimen>
<dimen name="module_push_image_margin_top">16dp</dimen>
<dimen name="module_push_image_qr_size_vertical">150dp</dimen>
<dimen name="module_push_image_radius">10dp</dimen>
<dimen name="module_push_image_width">320dp</dimen>
<dimen name="module_push_item_content_margin_bottom">27dp</dimen>
<dimen name="module_push_item_content_margin_end">20dp</dimen>
<dimen name="module_push_item_content_text_size">16dp</dimen>
<dimen name="module_push_item_content_width">560dp</dimen>
<dimen name="module_push_item_image_height">86dp</dimen>
<dimen name="module_push_item_image_radius">8dp</dimen>
<dimen name="module_push_item_image_width">118dp</dimen>
<dimen name="module_push_item_maxHeight_vertical">350dp</dimen>
<dimen name="module_push_item_minHeight_vertical">310dp</dimen>
<dimen name="module_push_item_time_textSize">5dp</dimen>
<dimen name="module_push_item_title_gone_margin_bottom">44dp</dimen>
<dimen name="module_push_item_title_margin_bottom">2dp</dimen>
<dimen name="module_push_item_title_margin_top">16dp</dimen>
<dimen name="module_push_line_height">120dp</dimen>
<dimen name="module_push_line_margin_left">30dp</dimen>
<dimen name="module_push_line_width">2dp</dimen>
<dimen name="module_push_margin_start">32dp</dimen>
<dimen name="module_push_margin_top">16dp</dimen>
<dimen name="module_push_massage_time_text_size">16dp</dimen>
<dimen name="module_push_message_app_icon_size">64dp</dimen>
<dimen name="module_push_message_item_height">100dp</dimen>
<dimen name="module_push_message_item_image_margin_end">8dp</dimen>
<dimen name="module_push_message_item_image_size">64dp</dimen>
<dimen name="module_push_message_margin_start">24dp</dimen>
<dimen name="module_push_panel_bkg_padding">8dp</dimen>
<dimen name="module_push_panel_corner">16dp</dimen>
<dimen name="module_push_panel_item_corner">12dp</dimen>
<dimen name="module_push_panel_marginBottom">2dp</dimen>
<dimen name="module_push_panel_marginRight">8dp</dimen>
<dimen name="module_push_panel_marginTop">2dp</dimen>
<dimen name="module_push_panel_paddingBottom">16dp</dimen>
<dimen name="module_push_panel_paddingLeft">28dp</dimen>
<dimen name="module_push_progress_bar_frame_marginEnd">19dp</dimen>
<dimen name="module_push_progress_bar_frame_marginTop">17dp</dimen>
<dimen name="module_push_progress_bar_frame_padding">11dp</dimen>
<dimen name="module_push_size">352dp</dimen>
<dimen name="module_push_timer_inner_radius">14dp</dimen>
<dimen name="module_push_timer_margin_end">13dp</dimen>
<dimen name="module_push_timer_margin_top">18dp</dimen>
<dimen name="module_push_timer_text_size">15dp</dimen>
<dimen name="module_push_timer_thickness">1.5dp</dimen>
<dimen name="module_push_title_margin_start">12dp</dimen>
<dimen name="module_push_title_margin_top">20dp</dimen>
<dimen name="module_push_title_mix_width">210dp</dimen>
<dimen name="module_push_title_text_size">18dp</dimen>
<dimen name="module_push_ui_app_icon_goneTopMargin">19dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin">12dp</dimen>
<dimen name="module_push_ui_app_icon_leftMargin_vertical">24dp</dimen>
<dimen name="module_push_ui_app_icon_size">30dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin">16dp</dimen>
<dimen name="module_push_ui_app_icon_topMargin_vertical">19dp</dimen>
<dimen name="module_push_ui_bkg_corner">17dp</dimen>
<dimen name="module_push_ui_button_radius">10dp</dimen>
<dimen name="module_push_ui_content_height">100dp</dimen>
<dimen name="module_push_ui_content_marginBottom">34dp</dimen>
<dimen name="module_push_ui_content_marginTop">6dp</dimen>
<dimen name="module_push_ui_content_marginTop_vertical">15dp</dimen>
<dimen name="module_push_ui_content_width">567dp</dimen>
<dimen name="module_push_ui_decrease_timer_corner">8dp</dimen>
<dimen name="module_push_ui_height">194dp</dimen>
<dimen name="module_push_ui_height_vertical">270dp</dimen>
<dimen name="module_push_ui_image_corner">8dp</dimen>
<dimen name="module_push_ui_image_height">178dp</dimen>
<dimen name="module_push_ui_image_height_vertical">164dp</dimen>
<dimen name="module_push_ui_image_marLeft">8dp</dimen>
<dimen name="module_push_ui_image_width">266dp</dimen>
<dimen name="module_push_ui_image_width_vertical">328dp</dimen>
<dimen name="module_push_ui_margin_top">20dp</dimen>
<dimen name="module_push_ui_timer_textSize">16dp</dimen>
<dimen name="module_push_ui_title_textSize">16dp</dimen>
<dimen name="module_push_ui_title_text_size">18dp</dimen>
<dimen name="module_push_ui_width_vertical">374dp</dimen>
<dimen name="module_push_window_x">20dp</dimen>
<dimen name="module_push_window_y">0dp</dimen>
<string name="app_name">mogo-core-function-notice</string>
<string name="module_push_check">查看</string>
<string name="module_push_str_clear">清空历史消息</string>
<string name="module_push_str_delete">清除</string>
<string name="module_push_str_not_data">暂无消息</string>
<style name="ModulePushMessageTheme" parent="Theme.AppCompat.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
<item name="android:windowBackground">@drawable/module_push_message_background</item>
</style>
<declare-styleable name="RoundedImageView">
<attr format="dimension" name="riv_corner_radius"/>
<attr format="dimension" name="riv_corner_radius_top_left"/>
<attr format="dimension" name="riv_corner_radius_top_right"/>
<attr format="dimension" name="riv_corner_radius_bottom_left"/>
<attr format="dimension" name="riv_corner_radius_bottom_right"/>
<attr format="dimension" name="riv_border_width"/>
<attr format="color" name="riv_border_color"/>
<attr format="boolean" name="riv_mutate_background"/>
<attr format="boolean" name="riv_oval"/>
<attr name="android:scaleType"/>
<attr name="riv_tile_Mode">
<enum name="clamp" value="0"/>
<enum name="repeat" value="1"/>
<enum name="mirror" value="2"/>
</attr>
<attr name="riv_tile_Mode_x">
<enum name="clamp" value="0"/>
<enum name="repeat" value="1"/>
<enum name="mirror" value="2"/>
</attr>
<attr name="riv_tile_Mode_y">
<enum name="clamp" value="0"/>
<enum name="repeat" value="1"/>
<enum name="mirror" value="2"/>
</attr>
</declare-styleable>
</resources>

View File

@@ -0,0 +1,53 @@
-- Merging decision tree log ---
manifest
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
package
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:3:5-50
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
android:versionName
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
android:versionCode
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:1-15:12
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
xmlns:android
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:2:11-69
application
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:5:5-13:19
receiver#com.mogo.eagle.core.function.notice.test.TestNoticeBroadcastReceiver
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:6:9-12:20
android:name
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:6:19-67
intent-filter#action:name:com.notice.test_notice_control+category:name:android.intent.category.DEFAULT
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:7:13-11:29
action#com.notice.test_notice_control
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:8:17-73
android:name
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:8:25-70
category#android.intent.category.DEFAULT
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:10:17-76
android:name
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml:10:27-73
uses-sdk
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml reason: use-sdk injection requested
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
android:targetSdkVersion
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
android:minSdkVersion
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
ADDED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml
INJECTED from /Users/zd/Downloads/Android/MoGoEagleEye/core/function-impl/mogo-core-function-notice/src/main/AndroidManifest.xml

Some files were not shown because too many files have changed in this diff Show More