diff --git a/111.txt b/111.txt index 9d07aa0..e43488f 100644 --- a/111.txt +++ b/111.txt @@ -1 +1,2 @@ -111 \ No newline at end of file +111 +develop \ No newline at end of file diff --git a/doc/_左天祥_泛读报告.docx b/doc/_左天祥_泛读报告.docx new file mode 100644 index 0000000..6a2213a Binary files /dev/null and b/doc/_左天祥_泛读报告.docx differ diff --git a/doc/_左天祥_维护需求与设计方案.docx b/doc/_左天祥_维护需求与设计方案.docx new file mode 100644 index 0000000..9d5c58d Binary files /dev/null and b/doc/_左天祥_维护需求与设计方案.docx differ diff --git a/doc/_左天祥_质量分析报告.docx b/doc/_左天祥_质量分析报告.docx new file mode 100644 index 0000000..7b5b444 Binary files /dev/null and b/doc/_左天祥_质量分析报告.docx differ diff --git a/model/刘定衢_小米便签新增——用例描述.md b/model/刘定衢_小米便签新增——用例描述.md new file mode 100644 index 0000000..4edb6a2 --- /dev/null +++ b/model/刘定衢_小米便签新增——用例描述.md @@ -0,0 +1,26 @@ +1.密码登录 +操作者:小米便签用户 + +前置条件:用户处于登录界面,账号已输入; + +基本事件流:用户输入正确的密码,进入滑块验证界面; + +其他事件流:用户输入的密码错误,密码清除,需要重新输入密码; + +异常事件流:用户输入的账号不存在,密码清除,返回到账号输入栏; + +后置条件:进入滑块验证界面、密码错误、该用户不存在; + + +2.滑块验证 +操作者:小米便签用户 + +前置条件:用户密码输入正确,跳转至滑块验证界面; + +基本事件流:用户将滑块移动到正确位置,通过验证,进入程序; + +其他事件流:用户将滑块移动到错误的位置,验证失败,滑块界面刷新; + +异常事件流:用户长时间不移动滑块,验证超时,返回登录界面; + +后置条件:进入程序、滑块界面刷新、返回登录界面; diff --git a/model/刘翱翔_分析类图.jpg b/model/刘翱翔_分析类图.jpg new file mode 100644 index 0000000..f29184c Binary files /dev/null and b/model/刘翱翔_分析类图.jpg differ diff --git a/model/左天祥_界面设计类图.png b/model/左天祥_界面设计类图.png new file mode 100644 index 0000000..6ab4d26 Binary files /dev/null and b/model/左天祥_界面设计类图.png differ diff --git a/model/左天祥_界面设计顺序图.png b/model/左天祥_界面设计顺序图.png new file mode 100644 index 0000000..53a2c63 Binary files /dev/null and b/model/左天祥_界面设计顺序图.png differ diff --git a/model/杜金洲_体系结构图.png b/model/杜金洲_体系结构图.png new file mode 100644 index 0000000..1adf995 Binary files /dev/null and b/model/杜金洲_体系结构图.png differ diff --git a/model/陈柯宇_用例顺序图.png b/model/陈柯宇_用例顺序图.png new file mode 100644 index 0000000..216f384 Binary files /dev/null and b/model/陈柯宇_用例顺序图.png differ diff --git a/other/_210340016刘定衢_代码标注/Data/MetaData.java b/other/_210340016刘定衢_代码标注/Data/MetaData.java new file mode 100644 index 0000000..0f33467 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/Data/MetaData.java @@ -0,0 +1,104 @@ +package net.micode.notes.gtask.data; + +public class MetaData extends Task { + /* + * 功能描述:得到类的简写名称存入字符串TAG中 + * 实现过程:调用getSimpleName ()函数 + */ + private final static String TAG = MetaData.class.getSimpleName(); + private String mRelatedGid = null; + /* + * 功能描述:设置数据,即生成元数据库 + * 实现过程:调用JSONObject库函数put (),Task类中的setNotes ()和setName ()函数 + * 参数注解: + */ + public void setMeta(String gid, JSONObject metaInfo) + { + //对函数块进行注释 + try { + metaInfo.put(GTaskStringUtils.META_HEAD_GTASK_ID, gid); + /* + * 将这对键值放入metaInfo这个jsonobject对象中 + */ + } catch (JSONException e) { + Log.e(TAG, "failed to put related gid"); + /* + * 输出错误信息 + */ + } + setNotes(metaInfo.toString()); + setName(GTaskStringUtils.META_NOTE_NAME); + } + /* + * 功能描述:获取相关联的Gid + */ + public String getRelatedGid() { + return mRelatedGid; + } + /* + * 功能描述:判断当前数据是否为空,若为空则返回真即值得保存 + * Made By CuiCan + */ + @Override + public boolean isWorthSaving() { + return getNotes() != null; + } + /* + * 功能描述:使用远程json数据对象设置元数据内容 + * 实现过程:调用父类Task中的setContentByRemoteJSON ()函数,并 + * 参数注解: + */ + @Override + public void setContentByRemoteJSON(JSONObject js) { + super.setContentByRemoteJSON(js); + if (getNotes() != null) { + try { + JSONObject metaInfo = new JSONObject(getNotes().trim()); + mRelatedGid = metaInfo.getString(GTaskStringUtils.META_HEAD_GTASK_ID); + } catch (JSONException e) { + Log.w(TAG, "failed to get related gid"); + /* + * 输出警告信息 + */ + mRelatedGid = null; + } + } + } + /* + * 功能描述:使用本地json数据对象设置元数据内容,一般不会用到,若用到,则抛出异常 + * Made By CuiCan + */ + @Override + public void setContentByLocalJSON(JSONObject js) { + // this function should not be called + throw new IllegalAccessError("MetaData:setContentByLocalJSON should not be called"); + /* + * 传递非法参数异常 + */ + } + /* + * 功能描述:从元数据内容中获取本地json对象,一般不会用到,若用到,则抛出异常 + * Made By CuiCan + */ + @Override + public JSONObject getLocalJSONFromContent() { + throw new IllegalAccessError("MetaData:getLocalJSONFromContent should not be called"); + /* + * 传递非法参数异常 + * Made By Cui Can + */ + } + /* + * 功能描述:获取同步动作状态,一般不会用到,若用到,则抛出异常 + * Made By CuiCan + */ + @Override + public int getSyncAction(Cursor c) { + throw new IllegalAccessError("MetaData:getSyncAction should not be called"); + /* + * 传递非法参数异常 + * Made By Cui Can + */ + } + +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/Data/Node.java b/other/_210340016刘定衢_代码标注/Data/Node.java new file mode 100644 index 0000000..47f7461 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/Data/Node.java @@ -0,0 +1,90 @@ +package net.micode.notes.gtask.data; + +import android.database.Cursor; + +import org.json.JSONObject; + +/** + * 应该是同步操作的基础数据类型,定义了相关指示同步操作的常量 + * 关键字:abstract + */ +public abstract class Node { + //定义了各种用于表征同步状态的常量 + public static final int SYNC_ACTION_NONE = 0;// 本地和云端都无可更新内容(即本地和云端内容一致) + + public static final int SYNC_ACTION_ADD_REMOTE = 1;// 需要在远程云端增加内容 + + public static final int SYNC_ACTION_ADD_LOCAL = 2;// 需要在本地增加内容 + + public static final int SYNC_ACTION_DEL_REMOTE = 3;// 需要在远程云端删除内容 + + public static final int SYNC_ACTION_DEL_LOCAL = 4;// 需要在本地删除内容 + + public static final int SYNC_ACTION_UPDATE_REMOTE = 5;// 需要将本地内容更新到远程云端 + + public static final int SYNC_ACTION_UPDATE_LOCAL = 6;// 需要将远程云端内容更新到本地 + + public static final int SYNC_ACTION_UPDATE_CONFLICT = 7;// 同步出现冲突 + + public static final int SYNC_ACTION_ERROR = 8;// 同步出现错误 + + private String mGid; + + private String mName; + + private long mLastModified;//记录最后一次修改时间 + + private boolean mDeleted;//表征是否被删除 + + public Node() { + mGid = null; + mName = ""; + mLastModified = 0; + mDeleted = false; + } + + public abstract JSONObject getCreateAction(int actionId); + + public abstract JSONObject getUpdateAction(int actionId); + + public abstract void setContentByRemoteJSON(JSONObject js); + + public abstract void setContentByLocalJSON(JSONObject js); + + public abstract JSONObject getLocalJSONFromContent(); + + public abstract int getSyncAction(Cursor c); + + public void setGid(String gid) { + this.mGid = gid; + } + + public void setName(String name) { + this.mName = name; + } + + public void setLastModified(long lastModified) { + this.mLastModified = lastModified; + } + + public void setDeleted(boolean deleted) { + this.mDeleted = deleted; + } + + public String getGid() { + return this.mGid; + } + + public String getName() { + return this.mName; + } + + public long getLastModified() { + return this.mLastModified; + } + + public boolean getDeleted() { + return this.mDeleted; + } + +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/Data/SqlData.java b/other/_210340016刘定衢_代码标注/Data/SqlData.java new file mode 100644 index 0000000..f47546a --- /dev/null +++ b/other/_210340016刘定衢_代码标注/Data/SqlData.java @@ -0,0 +1,224 @@ +/* + * Description:用于支持小米便签最底层的数据库相关操作,和sqlnote的关系上是子集关系,即data是note的子集(节点)。 + * SqlData其实就是也就是所谓数据中的数据 + */ + +package net.micode.notes.gtask.data; +/* + * 功能描述: + * 实现过程: + * 参数注解: + * Made By CuiCan + */ + +public class SqlData { + /* + * 功能描述:得到类的简写名称存入字符串TAG中 + * 实现过程:调用getSimpleName ()函数 + * Made By CuiCan + */ + private static final String TAG = SqlData.class.getSimpleName(); + + private static final int INVALID_ID = -99999;//为mDataId置初始值-99999 + + + /** + * 来自Notes类中定义的DataColumn中的一些常量 + */ + + // 集合了interface DataColumns中所有SF常量 + public static final String[] PROJECTION_DATA = new String[] { + DataColumns.ID, DataColumns.MIME_TYPE, DataColumns.CONTENT, DataColumns.DATA1, + DataColumns.DATA3 + }; + + /** + * 以下五个变量作为sql表中5列的编号 + */ + public static final int DATA_ID_COLUMN = 0; + + public static final int DATA_MIME_TYPE_COLUMN = 1; + + public static final int DATA_CONTENT_COLUMN = 2; + + public static final int DATA_CONTENT_DATA_1_COLUMN = 3; + + public static final int DATA_CONTENT_DATA_3_COLUMN = 4; + + private ContentResolver mContentResolver; + //判断是否直接用Content生成,是为true,否则为false + private boolean mIsCreate; + + private long mDataId; + + private String mDataMimeType; + + private String mDataContent; + + private long mDataContentData1; + + private String mDataContentData3; + + private ContentValues mDiffDataValues; + + /* + * 功能描述:构造函数,用于初始化数据 + * 参数注解:mContentResolver用于获取ContentProvider提供的数据 + * 参数注解: mIsCreate表征当前数据是用哪种方式创建(两种构造函数的参数不同) + * 参数注解: + * Made By CuiCan + */ + public SqlData(Context context) { + mContentResolver = context.getContentResolver(); + mIsCreate = true; + mDataId = INVALID_ID;//mDataId置初始值-99999 + mDataMimeType = DataConstants.NOTE; + mDataContent = ""; + mDataContentData1 = 0; + mDataContentData3 = ""; + mDiffDataValues = new ContentValues(); + } + + + /* + * 功能描述:构造函数,初始化数据 + * 参数注解:mContentResolver用于获取ContentProvider提供的数据 + * 参数注解: mIsCreate表征当前数据是用哪种方式创建(两种构造函数的参数不同) + * 参数注解: + * Made By CuiCan + */ + public SqlData(Context context, Cursor c) { + mContentResolver = context.getContentResolver(); + mIsCreate = false; + loadFromCursor(c); + mDiffDataValues = new ContentValues(); + } + + /* + * 功能描述:从光标处加载数据 + * 从当前的光标处将五列的数据加载到该类的对象 + * Made By CuiCan + */ + private void loadFromCursor(Cursor c) { + mDataId = c.getLong(DATA_ID_COLUMN); + mDataMimeType = c.getString(DATA_MIME_TYPE_COLUMN); + mDataContent = c.getString(DATA_CONTENT_COLUMN); + mDataContentData1 = c.getLong(DATA_CONTENT_DATA_1_COLUMN); + mDataContentData3 = c.getString(DATA_CONTENT_DATA_3_COLUMN); + } + + + /* + * 功能描述:设置用于共享的数据,并提供异常抛出与处理机制 + * 参数注解: + * Made By CuiCan + */ + public void setContent(JSONObject js) throws JSONException { + //如果传入的JSONObject对象中有DataColumns.ID这一项,则设置,否则设为INVALID_ID + long dataId = js.has(DataColumns.ID) ? js.getLong(DataColumns.ID) : INVALID_ID; + if (mIsCreate || mDataId != dataId) { + mDiffDataValues.put(DataColumns.ID, dataId); + } + mDataId = dataId; + + String dataMimeType = js.has(DataColumns.MIME_TYPE) ? js.getString(DataColumns.MIME_TYPE) + : DataConstants.NOTE; + if (mIsCreate || !mDataMimeType.equals(dataMimeType)) { + mDiffDataValues.put(DataColumns.MIME_TYPE, dataMimeType); + } + mDataMimeType = dataMimeType; + + String dataContent = js.has(DataColumns.CONTENT) ? js.getString(DataColumns.CONTENT) : ""; + if (mIsCreate || !mDataContent.equals(dataContent)) { + mDiffDataValues.put(DataColumns.CONTENT, dataContent); + } + mDataContent = dataContent; + + long dataContentData1 = js.has(DataColumns.DATA1) ? js.getLong(DataColumns.DATA1) : 0; + if (mIsCreate || mDataContentData1 != dataContentData1) { + mDiffDataValues.put(DataColumns.DATA1, dataContentData1); + } + mDataContentData1 = dataContentData1; + + String dataContentData3 = js.has(DataColumns.DATA3) ? js.getString(DataColumns.DATA3) : ""; + if (mIsCreate || !mDataContentData3.equals(dataContentData3)) { + mDiffDataValues.put(DataColumns.DATA3, dataContentData3); + } + mDataContentData3 = dataContentData3; + } + + + /* + * 功能描述:获取共享的数据内容,并提供异常抛出与处理机制 + * 参数注解: + * Made By CuiCan + */ + public JSONObject getContent() throws JSONException { + if (mIsCreate) { + Log.e(TAG, "it seems that we haven't created this in database yet"); + return null; + } + //创建JSONObject对象。并将相关数据放入其中,并返回。 + JSONObject js = new JSONObject(); + js.put(DataColumns.ID, mDataId); + js.put(DataColumns.MIME_TYPE, mDataMimeType); + js.put(DataColumns.CONTENT, mDataContent); + js.put(DataColumns.DATA1, mDataContentData1); + js.put(DataColumns.DATA3, mDataContentData3); + return js; + } + + /* + * 功能描述:commit函数用于把当前造作所做的修改保存到数据库 + * 参数注解: + * Made By CuiCan + */ + public void commit(long noteId, boolean validateVersion, long version) { + + if (mIsCreate) { + if (mDataId == INVALID_ID && mDiffDataValues.containsKey(DataColumns.ID)) { + mDiffDataValues.remove(DataColumns.ID); + } + + mDiffDataValues.put(DataColumns.NOTE_ID, noteId); + Uri uri = mContentResolver.insert(Notes.CONTENT_DATA_URI, mDiffDataValues); + try { + mDataId = Long.valueOf(uri.getPathSegments().get(1)); + } catch (NumberFormatException e) { + Log.e(TAG, "Get note id error :" + e.toString()); + throw new ActionFailureException("create note failed"); + } + } else { + if (mDiffDataValues.size() > 0) { + int result = 0; + if (!validateVersion) { + result = mContentResolver.update(ContentUris.withAppendedId( + Notes.CONTENT_DATA_URI, mDataId), mDiffDataValues, null, null); + } else { + result = mContentResolver.update(ContentUris.withAppendedId( + Notes.CONTENT_DATA_URI, mDataId), mDiffDataValues, + " ? in (SELECT " + NoteColumns.ID + " FROM " + TABLE.NOTE + + " WHERE " + NoteColumns.VERSION + "=?)", new String[] { + String.valueOf(noteId), String.valueOf(version) + }); + } + if (result == 0) { + Log.w(TAG, "there is no update. maybe user updates note when syncing"); + } + } + } + + mDiffDataValues.clear(); + mIsCreate = false; + } + + /* + * 功能描述:获取当前id + * 实现过程: + * 参数注解: + * Made By CuiCan + */ + public long getId() { + return mDataId; + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/Data/SqlNote.java b/other/_210340016刘定衢_代码标注/Data/SqlNote.java new file mode 100644 index 0000000..c669db2 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/Data/SqlNote.java @@ -0,0 +1,577 @@ +/* + * Description:用于支持小米便签最底层的数据库相关操作,和sqldata的关系上是父集关系,即note是data的子父集。 + * 和SqlData相比,SqlNote算是真正意义上的数据了。 + */ + +package net.micode.notes.gtask.data; +/* + * 功能描述: + * 实现过程: + * 参数注解: + * Made By CuiCan + */ + +public class SqlNote { + /* + * 功能描述:得到类的简写名称存入字符串TAG中 + * 实现过程:调用getSimpleName ()函数 + * Made By CuiCan + */ + private static final String TAG = SqlNote.class.getSimpleName(); + + private static final int INVALID_ID = -99999; + // 集合了interface NoteColumns中所有SF常量(17个) + public static final String[] PROJECTION_NOTE = new String[] { + NoteColumns.ID, NoteColumns.ALERTED_DATE, NoteColumns.BG_COLOR_ID, + NoteColumns.CREATED_DATE, NoteColumns.HAS_ATTACHMENT, NoteColumns.MODIFIED_DATE, + NoteColumns.NOTES_COUNT, NoteColumns.PARENT_ID, NoteColumns.SNIPPET, NoteColumns.TYPE, + NoteColumns.WIDGET_ID, NoteColumns.WIDGET_TYPE, NoteColumns.SYNC_ID, + NoteColumns.LOCAL_MODIFIED, NoteColumns.ORIGIN_PARENT_ID, NoteColumns.GTASK_ID, + NoteColumns.VERSION + }; + + //以下设置17个列的编号 + public static final int ID_COLUMN = 0; + + public static final int ALERTED_DATE_COLUMN = 1; + + public static final int BG_COLOR_ID_COLUMN = 2; + + public static final int CREATED_DATE_COLUMN = 3; + + public static final int HAS_ATTACHMENT_COLUMN = 4; + + public static final int MODIFIED_DATE_COLUMN = 5; + + public static final int NOTES_COUNT_COLUMN = 6; + + public static final int PARENT_ID_COLUMN = 7; + + public static final int SNIPPET_COLUMN = 8; + + public static final int TYPE_COLUMN = 9; + + public static final int WIDGET_ID_COLUMN = 10; + + public static final int WIDGET_TYPE_COLUMN = 11; + + public static final int SYNC_ID_COLUMN = 12; + + public static final int LOCAL_MODIFIED_COLUMN = 13; + + public static final int ORIGIN_PARENT_ID_COLUMN = 14; + + public static final int GTASK_ID_COLUMN = 15; + + public static final int VERSION_COLUMN = 16; + + //一下定义了17个内部的变量,其中12个可以由content中获得,5个需要初始化为0或者new + private Context mContext; + + private ContentResolver mContentResolver; + + private boolean mIsCreate; + + private long mId; + + private long mAlertDate; + + private int mBgColorId; + + private long mCreatedDate; + + private int mHasAttachment; + + private long mModifiedDate; + + private long mParentId; + + private String mSnippet; + + private int mType; + + private int mWidgetId; + + private int mWidgetType; + + private long mOriginParent; + + private long mVersion; + + private ContentValues mDiffNoteValues; + + private ArrayList mDataList; + + /* + * 功能描述:构造函数 + * 参数注解: mIsCreate用于标示构造方式 + * 参数注解: + * Made By CuiCan + */ + //构造函数只有context,对所有的变量进行初始化 + public SqlNote(Context context) { + mContext = context; + mContentResolver = context.getContentResolver(); + mIsCreate = true; + mId = INVALID_ID; + mAlertDate = 0; + mBgColorId = ResourceParser.getDefaultBgId(context); + mCreatedDate = System.currentTimeMillis();//调用系统函数获得创建时间 + mHasAttachment = 0; + mModifiedDate = System.currentTimeMillis();//最后一次修改时间初始化为创建时间 + mParentId = 0; + mSnippet = ""; + mType = Notes.TYPE_NOTE; + mWidgetId = AppWidgetManager.INVALID_APPWIDGET_ID; + mWidgetType = Notes.TYPE_WIDGET_INVALIDE; + mOriginParent = 0; + mVersion = 0; + mDiffNoteValues = new ContentValues(); + mDataList = new ArrayList(); + } + + + /* + * 功能描述:构造函数 + * 参数注解: mIsCreate用于标示构造方式 + * 参数注解: + * Made By CuiCan + */ + //构造函数有context和一个数据库的cursor,多数变量通过cursor指向的一条记录直接进行初始化 + public SqlNote(Context context, Cursor c) { + mContext = context; + mContentResolver = context.getContentResolver(); + mIsCreate = false; + loadFromCursor(c); + mDataList = new ArrayList(); + // + if (mType == Notes.TYPE_NOTE) + loadDataContent(); + mDiffNoteValues = new ContentValues(); + } + + + /* + * 功能描述:构造函数 + * 参数注解: mIsCreate用于标示构造方式 + * 参数注解: + * Made By CuiCan + */ + public SqlNote(Context context, long id) { + mContext = context; + mContentResolver = context.getContentResolver(); + mIsCreate = false; + loadFromCursor(id); + mDataList = new ArrayList(); + if (mType == Notes.TYPE_NOTE) + loadDataContent(); + mDiffNoteValues = new ContentValues(); + + } + + /* + * 功能描述:通过id从光标处加载数据 + * Made By CuiCan + */ + private void loadFromCursor(long id) { + Cursor c = null; + try { + c = mContentResolver.query(Notes.CONTENT_NOTE_URI, PROJECTION_NOTE, "(_id=?)", + new String[] { + String.valueOf(id) + }, null);//通过id获得对应的ContentResolver中的cursor + if (c != null) { + c.moveToNext(); + loadFromCursor(c);//然后加载数据进行初始化,这样函数 + //SqlNote(Context context, long id)与SqlNote(Context context, long id)的实现方式基本相同 + } else { + Log.w(TAG, "loadFromCursor: cursor = null"); + } + } finally { + if (c != null) + c.close(); + } + } + + /* + * 功能描述:通过游标从光标处加载数据 + * Made By CuiCan + */ + private void loadFromCursor(Cursor c) { + //直接从一条记录中的获得以下变量的初始值 + mId = c.getLong(ID_COLUMN); + mAlertDate = c.getLong(ALERTED_DATE_COLUMN); + mBgColorId = c.getInt(BG_COLOR_ID_COLUMN); + mCreatedDate = c.getLong(CREATED_DATE_COLUMN); + mHasAttachment = c.getInt(HAS_ATTACHMENT_COLUMN); + mModifiedDate = c.getLong(MODIFIED_DATE_COLUMN); + mParentId = c.getLong(PARENT_ID_COLUMN); + mSnippet = c.getString(SNIPPET_COLUMN); + mType = c.getInt(TYPE_COLUMN); + mWidgetId = c.getInt(WIDGET_ID_COLUMN); + mWidgetType = c.getInt(WIDGET_TYPE_COLUMN); + mVersion = c.getLong(VERSION_COLUMN); + } + + /* + * 功能描述:通过content机制获取共享数据并加载到数据库当前游标处 + * 参数注解: + * Made By CuiCan + */ + private void loadDataContent() { + Cursor c = null; + mDataList.clear(); + try { + c = mContentResolver.query(Notes.CONTENT_DATA_URI, SqlData.PROJECTION_DATA, + "(note_id=?)", new String[] { + String.valueOf(mId) + }, null); + if (c != null) { + if (c.getCount() == 0) { + Log.w(TAG, "it seems that the note has not data"); + return; + } + while (c.moveToNext()) { + SqlData data = new SqlData(mContext, c); + mDataList.add(data); + } + } else { + Log.w(TAG, "loadDataContent: cursor = null"); + } + } finally { + if (c != null) + c.close(); + } + } + + /* + * 功能描述:设置通过content机制用于共享的数据信息 + * 参数注解: + * Made By CuiCan + */ + public boolean setContent(JSONObject js) { + try { + JSONObject note = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); + if (note.getInt(NoteColumns.TYPE) == Notes.TYPE_SYSTEM) { + Log.w(TAG, "cannot set system folder"); + } else if (note.getInt(NoteColumns.TYPE) == Notes.TYPE_FOLDER) { + // for folder we can only update the snnipet and type + String snippet = note.has(NoteColumns.SNIPPET) ? note + .getString(NoteColumns.SNIPPET) : ""; + if (mIsCreate || !mSnippet.equals(snippet)) { + mDiffNoteValues.put(NoteColumns.SNIPPET, snippet); + } + mSnippet = snippet; + + int type = note.has(NoteColumns.TYPE) ? note.getInt(NoteColumns.TYPE) + : Notes.TYPE_NOTE; + if (mIsCreate || mType != type) { + mDiffNoteValues.put(NoteColumns.TYPE, type); + } + mType = type; + } else if (note.getInt(NoteColumns.TYPE) == Notes.TYPE_NOTE) { + JSONArray dataArray = js.getJSONArray(GTaskStringUtils.META_HEAD_DATA); + long id = note.has(NoteColumns.ID) ? note.getLong(NoteColumns.ID) : INVALID_ID; + if (mIsCreate || mId != id) { + mDiffNoteValues.put(NoteColumns.ID, id); + } + mId = id; + + long alertDate = note.has(NoteColumns.ALERTED_DATE) ? note + .getLong(NoteColumns.ALERTED_DATE) : 0; + if (mIsCreate || mAlertDate != alertDate) { + mDiffNoteValues.put(NoteColumns.ALERTED_DATE, alertDate); + } + mAlertDate = alertDate; + + int bgColorId = note.has(NoteColumns.BG_COLOR_ID) ? note + .getInt(NoteColumns.BG_COLOR_ID) : ResourceParser.getDefaultBgId(mContext); + if (mIsCreate || mBgColorId != bgColorId) { + mDiffNoteValues.put(NoteColumns.BG_COLOR_ID, bgColorId); + } + mBgColorId = bgColorId; + long createDate = note.has(NoteColumns.CREATED_DATE) ? note + .getLong(NoteColumns.CREATED_DATE) : System.currentTimeMillis(); + if (mIsCreate || mCreatedDate != createDate) { + mDiffNoteValues.put(NoteColumns.CREATED_DATE, createDate); + } + mCreatedDate = createDate; + + int hasAttachment = note.has(NoteColumns.HAS_ATTACHMENT) ? note + .getInt(NoteColumns.HAS_ATTACHMENT) : 0; + if (mIsCreate || mHasAttachment != hasAttachment) { + mDiffNoteValues.put(NoteColumns.HAS_ATTACHMENT, hasAttachment); + } + mHasAttachment = hasAttachment; + + long modifiedDate = note.has(NoteColumns.MODIFIED_DATE) ? note + .getLong(NoteColumns.MODIFIED_DATE) : System.currentTimeMillis(); + if (mIsCreate || mModifiedDate != modifiedDate) { + mDiffNoteValues.put(NoteColumns.MODIFIED_DATE, modifiedDate); + } + mModifiedDate = modifiedDate; + + long parentId = note.has(NoteColumns.PARENT_ID) ? note + .getLong(NoteColumns.PARENT_ID) : 0; + if (mIsCreate || mParentId != parentId) { + mDiffNoteValues.put(NoteColumns.PARENT_ID, parentId); + } + mParentId = parentId; + + String snippet = note.has(NoteColumns.SNIPPET) ? note + .getString(NoteColumns.SNIPPET) : ""; + if (mIsCreate || !mSnippet.equals(snippet)) { + mDiffNoteValues.put(NoteColumns.SNIPPET, snippet); + } + mSnippet = snippet; + + int type = note.has(NoteColumns.TYPE) ? note.getInt(NoteColumns.TYPE) + : Notes.TYPE_NOTE; + if (mIsCreate || mType != type) { + mDiffNoteValues.put(NoteColumns.TYPE, type); + } + mType = type; + + int widgetId = note.has(NoteColumns.WIDGET_ID) ? note.getInt(NoteColumns.WIDGET_ID) + : AppWidgetManager.INVALID_APPWIDGET_ID; + if (mIsCreate || mWidgetId != widgetId) { + mDiffNoteValues.put(NoteColumns.WIDGET_ID, widgetId); + } + mWidgetId = widgetId; + + int widgetType = note.has(NoteColumns.WIDGET_TYPE) ? note + .getInt(NoteColumns.WIDGET_TYPE) : Notes.TYPE_WIDGET_INVALIDE; + if (mIsCreate || mWidgetType != widgetType) { + mDiffNoteValues.put(NoteColumns.WIDGET_TYPE, widgetType); + } + mWidgetType = widgetType; + + long originParent = note.has(NoteColumns.ORIGIN_PARENT_ID) ? note + .getLong(NoteColumns.ORIGIN_PARENT_ID) : 0; + if (mIsCreate || mOriginParent != originParent) { + mDiffNoteValues.put(NoteColumns.ORIGIN_PARENT_ID, originParent); + } + mOriginParent = originParent; + + for (int i = 0; i < dataArray.length(); i++) { + JSONObject data = dataArray.getJSONObject(i); + SqlData sqlData = null; + if (data.has(DataColumns.ID)) { + long dataId = data.getLong(DataColumns.ID); + for (SqlData temp : mDataList) { + if (dataId == temp.getId()) { + sqlData = temp; + } + } + } + + if (sqlData == null) { + sqlData = new SqlData(mContext); + mDataList.add(sqlData); + } + + sqlData.setContent(data); + } + } + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + return false; + } + return true; + } + + /* + * 功能描述:获取content机制提供的数据并加载到note中 + * 参数注解: + * Made By CuiCan + */ + public JSONObject getContent() { + try { + JSONObject js = new JSONObject(); + + if (mIsCreate) { + Log.e(TAG, "it seems that we haven't created this in database yet"); + return null; + } + + JSONObject note = new JSONObject(); + if (mType == Notes.TYPE_NOTE) {//类型为note时 + note.put(NoteColumns.ID, mId); + note.put(NoteColumns.ALERTED_DATE, mAlertDate); + note.put(NoteColumns.BG_COLOR_ID, mBgColorId); + note.put(NoteColumns.CREATED_DATE, mCreatedDate); + note.put(NoteColumns.HAS_ATTACHMENT, mHasAttachment); + note.put(NoteColumns.MODIFIED_DATE, mModifiedDate); + note.put(NoteColumns.PARENT_ID, mParentId); + note.put(NoteColumns.SNIPPET, mSnippet); + note.put(NoteColumns.TYPE, mType); + note.put(NoteColumns.WIDGET_ID, mWidgetId); + note.put(NoteColumns.WIDGET_TYPE, mWidgetType); + note.put(NoteColumns.ORIGIN_PARENT_ID, mOriginParent); + js.put(GTaskStringUtils.META_HEAD_NOTE, note); + + JSONArray dataArray = new JSONArray(); + for (SqlData sqlData : mDataList) { + JSONObject data = sqlData.getContent(); + if (data != null) { + dataArray.put(data); + } + } + js.put(GTaskStringUtils.META_HEAD_DATA, dataArray); + } else if (mType == Notes.TYPE_FOLDER || mType == Notes.TYPE_SYSTEM) {//类型为文件夹或者 + note.put(NoteColumns.ID, mId); + note.put(NoteColumns.TYPE, mType); + note.put(NoteColumns.SNIPPET, mSnippet); + js.put(GTaskStringUtils.META_HEAD_NOTE, note); + } + + return js; + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + } + return null; + } + + /* + * 功能描述:给当前id设置父id + * 参数注解: + * Made By CuiCan + */ + public void setParentId(long id) { + mParentId = id; + mDiffNoteValues.put(NoteColumns.PARENT_ID, id); + } + + /* + * 功能描述:给当前id设置Gtaskid + * 参数注解: + * Made By CuiCan + */ + public void setGtaskId(String gid) { + mDiffNoteValues.put(NoteColumns.GTASK_ID, gid); + } + + /* + * 功能描述:给当前id设置同步id + * 参数注解: + * Made By CuiCan + */ + public void setSyncId(long syncId) { + mDiffNoteValues.put(NoteColumns.SYNC_ID, syncId); + } + + /* + * 功能描述:初始化本地修改,即撤销所有当前修改 + * 参数注解: + * Made By CuiCan + */ + public void resetLocalModified() { + mDiffNoteValues.put(NoteColumns.LOCAL_MODIFIED, 0); + } + + /* + * 功能描述:获得当前id + * 参数注解: + * Made By CuiCan + */ + public long getId() { + return mId; + } + + /* + * 功能描述:获得当前id的父id + * 参数注解: + * Made By CuiCan + */ + public long getParentId() { + return mParentId; + } + + /* + * 功能描述:获取小片段即用于显示的部分便签内容 + * 参数注解: + * Made By CuiCan + */ + public String getSnippet() { + return mSnippet; + } + + /* + * 功能描述:判断是否为便签类型 + * 参数注解: + * Made By CuiCan + */ + public boolean isNoteType() { + return mType == Notes.TYPE_NOTE; + } + + /* + * 功能描述:commit函数用于把当前造作所做的修改保存到数据库 + * 参数注解: + * Made By CuiCan + */ + public void commit(boolean validateVersion) { + if (mIsCreate) { + if (mId == INVALID_ID && mDiffNoteValues.containsKey(NoteColumns.ID)) { + mDiffNoteValues.remove(NoteColumns.ID); + } + + Uri uri = mContentResolver.insert(Notes.CONTENT_NOTE_URI, mDiffNoteValues); + try { + mId = Long.valueOf(uri.getPathSegments().get(1)); + } catch (NumberFormatException e) { + Log.e(TAG, "Get note id error :" + e.toString()); + throw new ActionFailureException("create note failed"); + } + if (mId == 0) { + throw new IllegalStateException("Create thread id failed"); + } + + if (mType == Notes.TYPE_NOTE) { + for (SqlData sqlData : mDataList) {//直接使用sqldata中的实现 + sqlData.commit(mId, false, -1); + } + } + } else { + if (mId <= 0 && mId != Notes.ID_ROOT_FOLDER && mId != Notes.ID_CALL_RECORD_FOLDER) { + Log.e(TAG, "No such note"); + throw new IllegalStateException("Try to update note with invalid id"); + } + if (mDiffNoteValues.size() > 0) { + mVersion ++; + int result = 0; + if (!validateVersion) {//构造字符串 + result = mContentResolver.update(Notes.CONTENT_NOTE_URI, mDiffNoteValues, "(" + + NoteColumns.ID + "=?)", new String[] { + String.valueOf(mId) + }); + } else { + result = mContentResolver.update(Notes.CONTENT_NOTE_URI, mDiffNoteValues, "(" + + NoteColumns.ID + "=?) AND (" + NoteColumns.VERSION + "<=?)", + new String[] { + String.valueOf(mId), String.valueOf(mVersion) + }); + } + if (result == 0) { + Log.w(TAG, "there is no update. maybe user updates note when syncing"); + } + } + + if (mType == Notes.TYPE_NOTE) { + for (SqlData sqlData : mDataList) { + sqlData.commit(mId, validateVersion, mVersion); + } + } + } + + // refresh local info + loadFromCursor(mId); + if (mType == Notes.TYPE_NOTE) + loadDataContent(); + + mDiffNoteValues.clear(); + mIsCreate = false; + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/Data/Task.java b/other/_210340016刘定衢_代码标注/Data/Task.java new file mode 100644 index 0000000..3c890b3 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/Data/Task.java @@ -0,0 +1,323 @@ +package net.micode.notes.gtask.data; + +public class Task extends Node { + private static final String TAG = Task.class.getSimpleName(); + + private boolean mCompleted;//是否完成 + + private String mNotes; + + private JSONObject mMetaInfo;//将在实例中存储数据的类型 + + private Task mPriorSibling;//对应的优先兄弟Task的指针(待完善) + + private TaskList mParent;//所在的任务列表的指针 + + public Task() { + super(); + mCompleted = false; + mNotes = null; + mPriorSibling = null;//TaskList中当前Task前面的Task的指针 + mParent = null;//当前Task所在的TaskList + mMetaInfo = null; + } + + public JSONObject getCreateAction(int actionId) { + JSONObject js = new JSONObject(); + + try { + // action_type + js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE, + GTaskStringUtils.GTASK_JSON_ACTION_TYPE_CREATE); + + // action_id + js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId); + + // index + js.put(GTaskStringUtils.GTASK_JSON_INDEX, mParent.getChildTaskIndex(this)); + + // entity_delta + JSONObject entity = new JSONObject(); + entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); + entity.put(GTaskStringUtils.GTASK_JSON_CREATOR_ID, "null"); + entity.put(GTaskStringUtils.GTASK_JSON_ENTITY_TYPE, + GTaskStringUtils.GTASK_JSON_TYPE_TASK); + if (getNotes() != null) { + entity.put(GTaskStringUtils.GTASK_JSON_NOTES, getNotes()); + } + js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); + + // parent_id + if (mParent!= null) { + js.put(GTaskStringUtils.GTASK_JSON_PARENT_ID, mParent.getGid()); + } + + // dest_parent_type + js.put(GTaskStringUtils.GTASK_JSON_DEST_PARENT_TYPE, + GTaskStringUtils.GTASK_JSON_TYPE_GROUP); + + // list_id + if (mParent!= null) { + js.put(GTaskStringUtils.GTASK_JSON_LIST_ID, mParent.getGid()); + } + + // prior_sibling_id + if (mPriorSibling != null) { + js.put(GTaskStringUtils.GTASK_JSON_PRIOR_SIBLING_ID, mPriorSibling.getGid()); + } + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("fail to generate task-create jsonobject"); + } + + return js; + } + + public JSONObject getUpdateAction(int actionId) { + JSONObject js = new JSONObject(); + + try { + // action_type + js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE, + GTaskStringUtils.GTASK_JSON_ACTION_TYPE_UPDATE); + + // action_id + js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId); + + // id + js.put(GTaskStringUtils.GTASK_JSON_ID, getGid()); + + // entity_delta + JSONObject entity = new JSONObject(); + entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); + if (getNotes() != null) { + entity.put(GTaskStringUtils.GTASK_JSON_NOTES, getNotes()); + } + entity.put(GTaskStringUtils.GTASK_JSON_DELETED, getDeleted()); + js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("fail to generate task-update jsonobject"); + } + + return js; + } + + public void setContentByRemoteJSON(JSONObject js) { + if (js != null) { + try { + // id + if (js.has(GTaskStringUtils.GTASK_JSON_ID)) { + setGid(js.getString(GTaskStringUtils.GTASK_JSON_ID)); + } + + // last_modified + if (js.has(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED)) { + setLastModified(js.getLong(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED)); + } + + // name + if (js.has(GTaskStringUtils.GTASK_JSON_NAME)) { + setName(js.getString(GTaskStringUtils.GTASK_JSON_NAME)); + } + + // notes + if (js.has(GTaskStringUtils.GTASK_JSON_NOTES)) { + setNotes(js.getString(GTaskStringUtils.GTASK_JSON_NOTES)); + } + + // deleted + if (js.has(GTaskStringUtils.GTASK_JSON_DELETED)) { + setDeleted(js.getBoolean(GTaskStringUtils.GTASK_JSON_DELETED)); + } + + // completed + if (js.has(GTaskStringUtils.GTASK_JSON_COMPLETED)) { + setCompleted(js.getBoolean(GTaskStringUtils.GTASK_JSON_COMPLETED)); + } + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("fail to get task content from jsonobject"); + } + } + } + + public void setContentByLocalJSON(JSONObject js) { //��metadata����ʵʩ + if (js == null || !js.has(GTaskStringUtils.META_HEAD_NOTE) + || !js.has(GTaskStringUtils.META_HEAD_DATA)) { + Log.w(TAG, "setContentByLocalJSON: nothing is avaiable"); + } + + try { + JSONObject note = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); + JSONArray dataArray = js.getJSONArray(GTaskStringUtils.META_HEAD_DATA); + + if (note.getInt(NoteColumns.TYPE) != Notes.TYPE_NOTE) { + Log.e(TAG, "invalid type"); + return; + } + + for (int i = 0; i < dataArray.length(); i++) { + JSONObject data = dataArray.getJSONObject(i); + if (TextUtils.equals(data.getString(DataColumns.MIME_TYPE), DataConstants.NOTE)) { + setName(data.getString(DataColumns.CONTENT)); + break; + } + } + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + } + } + + public JSONObject getLocalJSONFromContent() { + String name = getName(); + try { + if (mMetaInfo == null) { + // new task created from web + if (name == null) { + Log.w(TAG, "the note seems to be an empty one"); + return null; + } + + JSONObject js = new JSONObject(); + JSONObject note = new JSONObject(); + JSONArray dataArray = new JSONArray(); + JSONObject data = new JSONObject(); + data.put(DataColumns.CONTENT, name); + dataArray.put(data); + js.put(GTaskStringUtils.META_HEAD_DATA, dataArray); + note.put(NoteColumns.TYPE, Notes.TYPE_NOTE); + js.put(GTaskStringUtils.META_HEAD_NOTE, note); + return js; + } else { + // synced task + JSONObject note = mMetaInfo.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); + JSONArray dataArray = mMetaInfo.getJSONArray(GTaskStringUtils.META_HEAD_DATA); + + for (int i = 0; i < dataArray.length(); i++) { + JSONObject data = dataArray.getJSONObject(i); + if (TextUtils.equals(data.getString(DataColumns.MIME_TYPE), DataConstants.NOTE)) { + data.put(DataColumns.CONTENT, getName()); + break; + } + } + + note.put(NoteColumns.TYPE, Notes.TYPE_NOTE); + return mMetaInfo; + } + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + return null; + } + } + + public void setMetaInfo(MetaData metaData) { + if (metaData != null && metaData.getNotes() != null) { + try { + mMetaInfo = new JSONObject(metaData.getNotes()); + } catch (JSONException e) { + Log.w(TAG, e.toString()); + mMetaInfo = null; + } + } + } + + public int getSyncAction(Cursor c) { + try { + JSONObject noteInfo = null; + if (mMetaInfo != null && mMetaInfo.has(GTaskStringUtils.META_HEAD_NOTE)) { + noteInfo = mMetaInfo.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); + } + + if (noteInfo == null) { + Log.w(TAG, "it seems that note meta has been deleted"); + return SYNC_ACTION_UPDATE_REMOTE; + } + + if (!noteInfo.has(NoteColumns.ID)) { + Log.w(TAG, "remote note id seems to be deleted"); + return SYNC_ACTION_UPDATE_LOCAL; + } + + // validate the note id now + if (c.getLong(SqlNote.ID_COLUMN) != noteInfo.getLong(NoteColumns.ID)) { + Log.w(TAG, "note id doesn't match"); + return SYNC_ACTION_UPDATE_LOCAL; + } + + if (c.getInt(SqlNote.LOCAL_MODIFIED_COLUMN) == 0) { + // there is no local update + if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) { + // no update both side + return SYNC_ACTION_NONE; + } else { + // apply remote to local + return SYNC_ACTION_UPDATE_LOCAL; + } + } else { + // validate gtask id + if (!c.getString(SqlNote.GTASK_ID_COLUMN).equals(getGid())) { + Log.e(TAG, "gtask id doesn't match"); + return SYNC_ACTION_ERROR; + } + if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) { + // local modification only + return SYNC_ACTION_UPDATE_REMOTE; + } else { + return SYNC_ACTION_UPDATE_CONFLICT; + } + } + } catch (Exception e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + } + + return SYNC_ACTION_ERROR; + } + + public boolean isWorthSaving() { + return mMetaInfo != null || (getName() != null && getName().trim().length() > 0) + || (getNotes() != null && getNotes().trim().length() > 0); + } + + public void setCompleted(boolean completed) { + this.mCompleted = completed; + } + + public void setNotes(String notes) { + this.mNotes = notes; + } + + public void setPriorSibling(Task priorSibling) { + this.mPriorSibling = priorSibling; + } + + public void setParent(TaskList parent) { + this.mParent = parent; + } + + public boolean getCompleted() { + return this.mCompleted; + } + + public String getNotes() { + return this.mNotes; + } + + public Task getPriorSibling() { + return this.mPriorSibling; + } + + public TaskList getParent() { + return this.mParent; + } + +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/Data/TaskList.java b/other/_210340016刘定衢_代码标注/Data/TaskList.java new file mode 100644 index 0000000..4922bb4 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/Data/TaskList.java @@ -0,0 +1,370 @@ +package net.micode.notes.gtask.data; + +public class TaskList extends Node { + private static final String TAG = TaskList.class.getSimpleName();//tag标记 + + private int mIndex;//当前TaskList的指针 + + private ArrayList mChildren;//类中主要的保存数据的单元,用来实现一个以Task为元素的ArrayList + + public TaskList() { + super(); + mChildren = new ArrayList(); + mIndex = 1; + } + + /* (non-Javadoc) + * @see net.micode.notes.gtask.data.Node#getCreateAction(int) + * 生成并返回一个包含了一定数据的JSONObject实体 + */ + public JSONObject getCreateAction(int actionId) { + JSONObject js = new JSONObject(); + + try { + // action_type + js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE, + GTaskStringUtils.GTASK_JSON_ACTION_TYPE_CREATE); + + // action_id + js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId); + + // index + js.put(GTaskStringUtils.GTASK_JSON_INDEX, mIndex); + + // entity_delta + JSONObject entity = new JSONObject();//entity实体 + entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); + entity.put(GTaskStringUtils.GTASK_JSON_CREATOR_ID, "null"); + entity.put(GTaskStringUtils.GTASK_JSON_ENTITY_TYPE, + GTaskStringUtils.GTASK_JSON_TYPE_GROUP); + js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("fail to generate tasklist-create jsonobject"); + } + + return js; + } + + /* (non-Javadoc) + * @see net.micode.notes.gtask.data.Node#getUpdateAction(int) + * 生成并返回一个包含了一定数据的JSONObject实体 + */ + public JSONObject getUpdateAction(int actionId) { + JSONObject js = new JSONObject(); + + try { + // action_type + js.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE, + GTaskStringUtils.GTASK_JSON_ACTION_TYPE_UPDATE); + + // action_id + js.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, actionId); + + // id + js.put(GTaskStringUtils.GTASK_JSON_ID, getGid()); + + // entity_delta + JSONObject entity = new JSONObject(); + entity.put(GTaskStringUtils.GTASK_JSON_NAME, getName()); + entity.put(GTaskStringUtils.GTASK_JSON_DELETED, getDeleted()); + js.put(GTaskStringUtils.GTASK_JSON_ENTITY_DELTA, entity); + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("fail to generate tasklist-update jsonobject"); + } + + return js; + } + + public void setContentByRemoteJSON(JSONObject js) { + if (js != null) { + try { + // id + if (js.has(GTaskStringUtils.GTASK_JSON_ID)) { + setGid(js.getString(GTaskStringUtils.GTASK_JSON_ID)); + } + + // last_modified + if (js.has(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED)) { + setLastModified(js.getLong(GTaskStringUtils.GTASK_JSON_LAST_MODIFIED)); + } + + // name + if (js.has(GTaskStringUtils.GTASK_JSON_NAME)) { + setName(js.getString(GTaskStringUtils.GTASK_JSON_NAME)); + } + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("fail to get tasklist content from jsonobject"); + } + } + } + + public void setContentByLocalJSON(JSONObject js) { + if (js == null || !js.has(GTaskStringUtils.META_HEAD_NOTE)) { + Log.w(TAG, "setContentByLocalJSON: nothing is avaiable"); + } + + try { + JSONObject folder = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); + + if (folder.getInt(NoteColumns.TYPE) == Notes.TYPE_FOLDER) { + String name = folder.getString(NoteColumns.SNIPPET); + setName(GTaskStringUtils.MIUI_FOLDER_PREFFIX + name); + } else if (folder.getInt(NoteColumns.TYPE) == Notes.TYPE_SYSTEM) { + if (folder.getLong(NoteColumns.ID) == Notes.ID_ROOT_FOLDER) + setName(GTaskStringUtils.MIUI_FOLDER_PREFFIX + GTaskStringUtils.FOLDER_DEFAULT); + else if (folder.getLong(NoteColumns.ID) == Notes.ID_CALL_RECORD_FOLDER) + setName(GTaskStringUtils.MIUI_FOLDER_PREFFIX + + GTaskStringUtils.FOLDER_CALL_NOTE); + else + Log.e(TAG, "invalid system folder"); + } else { + Log.e(TAG, "error type"); + } + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + } + } + + public JSONObject getLocalJSONFromContent() { + try { + JSONObject js = new JSONObject(); + JSONObject folder = new JSONObject(); + + String folderName = getName(); + if (getName().startsWith(GTaskStringUtils.MIUI_FOLDER_PREFFIX)) + folderName = folderName.substring(GTaskStringUtils.MIUI_FOLDER_PREFFIX.length(), + folderName.length()); + folder.put(NoteColumns.SNIPPET, folderName); + if (folderName.equals(GTaskStringUtils.FOLDER_DEFAULT) + || folderName.equals(GTaskStringUtils.FOLDER_CALL_NOTE)) + folder.put(NoteColumns.TYPE, Notes.TYPE_SYSTEM); + else + folder.put(NoteColumns.TYPE, Notes.TYPE_FOLDER); + + js.put(GTaskStringUtils.META_HEAD_NOTE, folder); + + return js; + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + return null; + } + } + + public int getSyncAction(Cursor c) { + try { + if (c.getInt(SqlNote.LOCAL_MODIFIED_COLUMN) == 0) { + // there is no local update + if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) { + // no update both side + return SYNC_ACTION_NONE; + } else { + // apply remote to local + return SYNC_ACTION_UPDATE_LOCAL; + } + } else { + // validate gtask id + if (!c.getString(SqlNote.GTASK_ID_COLUMN).equals(getGid())) { + Log.e(TAG, "gtask id doesn't match"); + return SYNC_ACTION_ERROR; + } + if (c.getLong(SqlNote.SYNC_ID_COLUMN) == getLastModified()) { + // local modification only + return SYNC_ACTION_UPDATE_REMOTE; + } else { + // for folder conflicts, just apply local modification + return SYNC_ACTION_UPDATE_REMOTE; + } + } + } catch (Exception e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + } + + return SYNC_ACTION_ERROR; + } + + /** + * @return + * 功能:获得TaskList的大小,即mChildren的大小 + */ + public int getChildTaskCount() { + return mChildren.size(); + } + + /** + * @param task + * @return 返回值为是否成功添加任务。 + * 功能:在当前任务表末尾添加新的任务。 + */ + public boolean addChildTask(Task task) { + boolean ret = false; + if (task != null && !mChildren.contains(task)) { + ret = mChildren.add(task); + if (ret) { + // need to set prior sibling and parent + task.setPriorSibling(mChildren.isEmpty() ? null : mChildren + .get(mChildren.size() - 1)); + task.setParent(this); + //注意:每一次ArrayList的变化都要紧跟相关Task中PriorSibling的更改 + //,接下来几个函数都有相关操作 + } + } + return ret; + } + + /** + * @param task + * @param index + * @return + * 功能:在当前任务表的指定位置添加新的任务。 + */ + public boolean addChildTask(Task task, int index) { + if (index < 0 || index > mChildren.size()) { + Log.e(TAG, "add child task: invalid index"); + return false; + } + + int pos = mChildren.indexOf(task); + if (task != null && pos == -1) { + mChildren.add(index, task); + + // update the task list + Task preTask = null; + Task afterTask = null; + if (index != 0) + preTask = mChildren.get(index - 1); + if (index != mChildren.size() - 1) + afterTask = mChildren.get(index + 1); + + task.setPriorSibling(preTask); + if (afterTask != null) + afterTask.setPriorSibling(task); + } + + return true; + } + + /** + * @param task + * @return 返回删除是否成功 + * 功能:删除TaskList中的一个Task + */ + public boolean removeChildTask(Task task) { + boolean ret = false; + int index = mChildren.indexOf(task); + if (index != -1) { + ret = mChildren.remove(task); + + if (ret) { + // reset prior sibling and parent + task.setPriorSibling(null); + task.setParent(null); + + // update the task list + if (index != mChildren.size()) { + mChildren.get(index).setPriorSibling( + index == 0 ? null : mChildren.get(index - 1)); + } + } + } + return ret; + } + + /** + * @param task + * @param index + * @return + * 功能:将当前TaskList中含有的某个Task移到index位置 + */ + public boolean moveChildTask(Task task, int index) { + + if (index < 0 || index >= mChildren.size()) { + Log.e(TAG, "move child task: invalid index"); + return false; + } + + int pos = mChildren.indexOf(task); + if (pos == -1) { + Log.e(TAG, "move child task: the task should in the list"); + return false; + } + + if (pos == index) + return true; + return (removeChildTask(task) && addChildTask(task, index)); + //利用已实现好的功能完成当下功能; + } + + /** + * @param gid + * @return返回寻找结果 + * 功能:按gid寻找Task + */ + public Task findChildTaskByGid(String gid) { + for (int i = 0; i < mChildren.size(); i++) { + Task t = mChildren.get(i); + if (t.getGid().equals(gid)) { + return t; + } + } + return null; + } + + /** + * @param task + * @return + * 功能:返回指定Task的index + */ + public int getChildTaskIndex(Task task) { + return mChildren.indexOf(task); + } + + /** + * @param index + * @return + * 功能:返回指定index的Task + */ + public Task getChildTaskByIndex(int index) { + if (index < 0 || index >= mChildren.size()) { + Log.e(TAG, "getTaskByIndex: invalid index"); + return null; + } + return mChildren.get(index); + } + + /** + * @param gid + * @return + * 功能:返回指定gid的Task + */ + public Task getChilTaskByGid(String gid) { + for (Task task : mChildren) {//一种常见的ArrayList的遍历方法(四种,见精读笔记) + if (task.getGid().equals(gid)) + return task; + } + return null; + } + + public ArrayList getChildTaskList() { + return this.mChildren; + } + + public void setIndex(int index) { + this.mIndex = index; + } + + public int getIndex() { + return this.mIndex; + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/exception/ActionFailureException.java b/other/_210340016刘定衢_代码标注/exception/ActionFailureException.java new file mode 100644 index 0000000..f455c7a --- /dev/null +++ b/other/_210340016刘定衢_代码标注/exception/ActionFailureException.java @@ -0,0 +1,32 @@ +/* + * Description:支持小米便签运行过程中的运行异常处理。 + */ + +package net.micode.notes.gtask.exception; + +public class ActionFailureException extends RuntimeException { + private static final long serialVersionUID = 4425249765923293627L; + /* + * serialVersionUID相当于java类的身份证。主要用于版本控制。 + * serialVersionUID作用是序列化时保持版本的兼容性,即在版本升级时反序列化仍保持对象的唯一性。 + * Made By Cuican + */ + + public ActionFailureException() { + super(); + } + /* + * 在JAVA类中使用super来引用父类的成分,用this来引用当前对象. + * 如果一个类从另外一个类继承,我们new这个子类的实例对象的时候,这个子类对象里面会有一个父类对象。 + * 怎么去引用里面的父类对象呢?使用super来引用 + * 也就是说,此处super()以及super (paramString)可认为是Exception ()和Exception (paramString) + * Made By Cuican + */ + public ActionFailureException(String paramString) { + super(paramString); + } + + public ActionFailureException(String paramString, Throwable paramThrowable) { + super(paramString, paramThrowable); + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/exception/NetworkFailureException.java b/other/_210340016刘定衢_代码标注/exception/NetworkFailureException.java new file mode 100644 index 0000000..63a1adb --- /dev/null +++ b/other/_210340016刘定衢_代码标注/exception/NetworkFailureException.java @@ -0,0 +1,33 @@ +/* + * Description:支持小米便签运行过程中的网络异常处理。 + */ + +package net.micode.notes.gtask.exception; + +public class NetworkFailureException extends Exception { + private static final long serialVersionUID = 2107610287180234136L; + /* + * serialVersionUID相当于java类的身份证。主要用于版本控制。 + * serialVersionUID作用是序列化时保持版本的兼容性,即在版本升级时反序列化仍保持对象的唯一性。 + * Made By Cuican + */ + + public NetworkFailureException() { + super(); + } + + /* + * 在JAVA类中使用super来引用父类的成分,用this来引用当前对象. + * 如果一个类从另外一个类继承,我们new这个子类的实例对象的时候,这个子类对象里面会有一个父类对象。 + * 怎么去引用里面的父类对象呢?使用super来引用 + * 也就是说,此处super()以及super (paramString)可认为是Exception ()和Exception (paramString) + * Made By Cuican + */ + public NetworkFailureException(String paramString) { + super(paramString); + } + + public NetworkFailureException(String paramString, Throwable paramThrowable) { + super(paramString, paramThrowable); + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/remote/GTaskASyncTask.java b/other/_210340016刘定衢_代码标注/remote/GTaskASyncTask.java new file mode 100644 index 0000000..364a604 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/remote/GTaskASyncTask.java @@ -0,0 +1,102 @@ +package net.micode.notes.gtask.remote; + +/*异步操作类,实现GTask的异步操作过程 + * 主要方法: + * private void showNotification(int tickerId, String content) 向用户提示当前同步的状态,是一个用于交互的方法 + * protected Integer doInBackground(Void... unused) 此方法在后台线程执行,完成任务的主要工作,通常需要较长的时间 + * protected void onProgressUpdate(String... progress) 可以使用进度条增加用户体验度。 此方法在主线程执行,用于显示任务执行的进度。 + * protected void onPostExecute(Integer result) 相当于Handler 处理UI的方式,在这里面可以使用在doInBackground 得到的结果处理操作UI + */ +public class GTaskASyncTask extends AsyncTask { + + + private static int GTASK_SYNC_NOTIFICATION_ID = 5234235; + + public interface OnCompleteListener { + void onComplete(); + } + + private Context mContext; + + private NotificationManager mNotifiManager; + + private GTaskManager mTaskManager; + + private OnCompleteListener mOnCompleteListener; + + public GTaskASyncTask(Context context, OnCompleteListener listener) { + mContext = context; + mOnCompleteListener = listener; + mNotifiManager = (NotificationManager) mContext + .getSystemService(Context.NOTIFICATION_SERVICE); + mTaskManager = GTaskManager.getInstance(); + } + + public void cancelSync() { + mTaskManager.cancelSync(); + } + + public void publishProgess(String message) { // 发布进度单位,系统将会调用onProgressUpdate()方法更新这些值 + publishProgress(new String[] { + message + }); + } + + private void showNotification(int tickerId, String content) { + Notification notification = new Notification(R.drawable.notification, mContext + .getString(tickerId), System.currentTimeMillis()); + notification.defaults = Notification.DEFAULT_LIGHTS; // 调用系统自带灯光 + notification.flags = Notification.FLAG_AUTO_CANCEL; // 点击清除按钮或点击通知后会自动消失 + PendingIntent pendingIntent; //一个描述了想要启动一个Activity、Broadcast或是Service的意图 + if (tickerId != R.string.ticker_success) { + pendingIntent = PendingIntent.getActivity(mContext, 0, new Intent(mContext, + NotesPreferenceActivity.class), 0); //如果同步不成功,那么从系统取得一个用于启动一个NotesPreferenceActivity的PendingIntent对象 + + } else { + pendingIntent = PendingIntent.getActivity(mContext, 0, new Intent(mContext, + NotesListActivity.class), 0); //如果同步成功,那么从系统取得一个用于启动一个NotesListActivity的PendingIntent对象 + } + notification.setLatestEventInfo(mContext, mContext.getString(R.string.app_name), content, + pendingIntent); + mNotifiManager.notify(GTASK_SYNC_NOTIFICATION_ID, notification);//通过NotificationManager对象的notify()方法来执行一个notification的消息 + } + + @Override + protected Integer doInBackground(Void... unused) { + publishProgess(mContext.getString(R.string.sync_progress_login, NotesPreferenceActivity + .getSyncAccountName(mContext))); //利用getString,将把 NotesPreferenceActivity.getSyncAccountName(mContext))的字符串内容传进sync_progress_login中 + return mTaskManager.sync(mContext, this); //进行后台同步具体操作 + } + + @Override + protected void onProgressUpdate(String... progress) { + showNotification(R.string.ticker_syncing, progress[0]); + if (mContext instanceof GTaskSyncService) { //instanceof 判断mContext是否是GTaskSyncService的实例 + ((GTaskSyncService) mContext).sendBroadcast(progress[0]); + } + } + + @Override + protected void onPostExecute(Integer result) { //用于在执行完后台任务后更新UI,显示结果 + if (result == GTaskManager.STATE_SUCCESS) { + showNotification(R.string.ticker_success, mContext.getString( + R.string.success_sync_account, mTaskManager.getSyncAccount())); + NotesPreferenceActivity.setLastSyncTime(mContext, System.currentTimeMillis()); //设置最新同步的时间 + } else if (result == GTaskManager.STATE_NETWORK_ERROR) { + showNotification(R.string.ticker_fail, mContext.getString(R.string.error_sync_network)); + } else if (result == GTaskManager.STATE_INTERNAL_ERROR) { + showNotification(R.string.ticker_fail, mContext.getString(R.string.error_sync_internal)); + } else if (result == GTaskManager.STATE_SYNC_CANCELLED) { + showNotification(R.string.ticker_cancel, mContext + .getString(R.string.error_sync_cancelled)); + } //几种不同情况下的结果显示 + if (mOnCompleteListener != null) { + new Thread(new Runnable() { //这里好像是方法内的一个线程,但是并不太懂什么意思 + + public void run() { //完成后的操作,使用onComplete()将所有值都重新初始化,相当于完成一次操作 + mOnCompleteListener.onComplete(); + } + }).start(); + } + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/remote/GTaskClient.java b/other/_210340016刘定衢_代码标注/remote/GTaskClient.java new file mode 100644 index 0000000..f15dc85 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/remote/GTaskClient.java @@ -0,0 +1,612 @@ +package net.micode.notes.gtask.remote; + +/* + * 主要功能:实现GTASK的登录操作,进行GTASK任务的创建,创建任务列表,从网络上获取任务和任务列表的内容 + * 主要使用类或技术:accountManager JSONObject HttpParams authToken Gid + */ +public class GTaskClient { + private static final String TAG = GTaskClient.class.getSimpleName(); + + private static final String GTASK_URL = "https://mail.google.com/tasks/"; //这个是指定的URL + + private static final String GTASK_GET_URL = "https://mail.google.com/tasks/ig"; + + private static final String GTASK_POST_URL = "https://mail.google.com/tasks/r/ig"; + + private static GTaskClient mInstance = null; + + private DefaultHttpClient mHttpClient; + + private String mGetUrl; + + private String mPostUrl; + + private long mClientVersion; + + private boolean mLoggedin; + + private long mLastLoginTime; + + private int mActionId; + + private Account mAccount; + + private JSONArray mUpdateArray; + + private GTaskClient() { + mHttpClient = null; + mGetUrl = GTASK_GET_URL; + mPostUrl = GTASK_POST_URL; + mClientVersion = -1; + mLoggedin = false; + mLastLoginTime = 0; + mActionId = 1; + mAccount = null; + mUpdateArray = null; + } + + /*用来获取的实例化对象 + * 使用 getInstance() + * 返回mInstance这个实例化对象 + */ + public static synchronized GTaskClient getInstance() { + if (mInstance == null) { + mInstance = new GTaskClient(); + } + return mInstance; + } + + /*用来实现登录操作的函数,传入的参数是一个Activity + * 设置登录操作限制时间,如果超时则需要重新登录 + * 有两种登录方式,使用用户自己的URL登录或者使用谷歌官方的URL登录 + * 返回true或者false,即最后是否登陆成功 + */ + public boolean login(Activity activity) { + // we suppose that the cookie would expire after 5 minutes + // then we need to re-login + //判断距离最后一次登录操作是否超过5分钟 + final long interval = 1000 * 60 * 5; + if (mLastLoginTime + interval < System.currentTimeMillis()) { + mLoggedin = false; + } + + // need to re-login after account switch 重新登录操作 + if (mLoggedin + && !TextUtils.equals(getSyncAccount().name, NotesPreferenceActivity + .getSyncAccountName(activity))) { + mLoggedin = false; + } + + //如果没超过时间,则不需要重新登录 + if (mLoggedin) { + Log.d(TAG, "already logged in"); + return true; + } + + mLastLoginTime = System.currentTimeMillis();//更新最后登录时间,改为系统当前的时间 + String authToken = loginGoogleAccount(activity, false);//判断是否登录到谷歌账户 + if (authToken == null) { + Log.e(TAG, "login google account failed"); + return false; + } + + // login with custom domain if necessary + //尝试使用用户自己的域名登录 + if (!(mAccount.name.toLowerCase().endsWith("gmail.com") || mAccount.name.toLowerCase() //将用户账号名改为统一格式(小写)后判断是否为一个谷歌账号地址 + .endsWith("googlemail.com"))) { + StringBuilder url = new StringBuilder(GTASK_URL).append("a/"); + int index = mAccount.name.indexOf('@') + 1; + String suffix = mAccount.name.substring(index); + url.append(suffix + "/"); + mGetUrl = url.toString() + "ig"; //设置用户对应的getUrl + mPostUrl = url.toString() + "r/ig"; //设置用户对应的postUrl + + if (tryToLoginGtask(activity, authToken)) { + mLoggedin = true; + } + } + + // try to login with google official url + //如果用户账户无法登录,则使用谷歌官方的URI进行登录 + if (!mLoggedin) { + mGetUrl = GTASK_GET_URL; + mPostUrl = GTASK_POST_URL; + if (!tryToLoginGtask(activity, authToken)) { + return false; + } + } + + mLoggedin = true; + return true; + } + + /*具体实现登录谷歌账户的方法 + * 使用令牌机制 + * 使用AccountManager来管理注册账号 + * 返回值是账号的令牌 + */ + private String loginGoogleAccount(Activity activity, boolean invalidateToken) { + String authToken; //令牌,是登录操作保证安全性的一个方法 + AccountManager accountManager = AccountManager.get(activity);//AccountManager这个类给用户提供了集中注册账号的接口 + Account[] accounts = accountManager.getAccountsByType("com.google");//获取全部以com.google结尾的account + + if (accounts.length == 0) { + Log.e(TAG, "there is no available google account"); + return null; + } + + String accountName = NotesPreferenceActivity.getSyncAccountName(activity); + Account account = null; + //遍历获得的accounts信息,寻找已经记录过的账户信息 + for (Account a : accounts) { + if (a.name.equals(accountName)) { + account = a; + break; + } + } + if (account != null) { + mAccount = account; + } else { + Log.e(TAG, "unable to get an account with the same name in the settings"); + return null; + } + + // get the token now + //获取选中账号的令牌 + AccountManagerFuture accountManagerFuture = accountManager.getAuthToken(account, + "goanna_mobile", null, activity, null, null); + try { + Bundle authTokenBundle = accountManagerFuture.getResult(); + authToken = authTokenBundle.getString(AccountManager.KEY_AUTHTOKEN); + //如果是invalidateToken,那么需要调用invalidateAuthToken(String, String)方法废除这个无效token + if (invalidateToken) { + accountManager.invalidateAuthToken("com.google", authToken); + loginGoogleAccount(activity, false); + } + } catch (Exception e) { + Log.e(TAG, "get auth token failed"); + authToken = null; + } + + return authToken; + } + + //尝试登陆Gtask,这只是一个预先判断令牌是否是有效以及是否能登上GTask的方法,而不是具体实现登陆的方法 + private boolean tryToLoginGtask(Activity activity, String authToken) { + if (!loginGtask(authToken)) { + // maybe the auth token is out of authTokedate, now let's invalidate the + // token and try again + //删除过一个无效的authToken,申请一个新的后再次尝试登陆 + authToken = loginGoogleAccount(activity, true); + if (authToken == null) { + Log.e(TAG, "login google account failed"); + return false; + } + + if (!loginGtask(authToken)) { + Log.e(TAG, "login gtask failed"); + return false; + } + } + return true; + } + + //实现登录GTask的具体操作 + private boolean loginGtask(String authToken) { + int timeoutConnection = 10000; + int timeoutSocket = 15000; //socket是一种通信连接实现数据的交换的端口 + HttpParams httpParameters = new BasicHttpParams(); //实例化一个新的HTTP参数类 + HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);//设置连接超时时间 + HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);//设置设置端口超时时间 + mHttpClient = new DefaultHttpClient(httpParameters); + BasicCookieStore localBasicCookieStore = new BasicCookieStore(); //设置本地cookie + mHttpClient.setCookieStore(localBasicCookieStore); + HttpProtocolParams.setUseExpectContinue(mHttpClient.getParams(), false); + + // login gtask + try { + String loginUrl = mGetUrl + "?auth=" + authToken; //设置登录的url + HttpGet httpGet = new HttpGet(loginUrl); //通过登录的uri实例化网页上资源的查找 + HttpResponse response = null; + response = mHttpClient.execute(httpGet); + + // get the cookie now + //获取CookieStore里存放的cookie,看如果存有“GTL(不知道什么意思)”,则说明有验证成功的有效的cookie + List cookies = mHttpClient.getCookieStore().getCookies(); + boolean hasAuthCookie = false; + for (Cookie cookie : cookies) { + if (cookie.getName().contains("GTL")) { + hasAuthCookie = true; + } + } + if (!hasAuthCookie) { + Log.w(TAG, "it seems that there is no auth cookie"); + } + + // get the client version + //获取client的内容,具体操作是在返回的Content中截取从_setup(开始到)}中间的字符串内容,也就是gtask_url的内容 + String resString = getResponseContent(response.getEntity()); + String jsBegin = "_setup("; + String jsEnd = ")}"; + int begin = resString.indexOf(jsBegin); + int end = resString.lastIndexOf(jsEnd); + String jsString = null; + if (begin != -1 && end != -1 && begin < end) { + jsString = resString.substring(begin + jsBegin.length(), end); + } + JSONObject js = new JSONObject(jsString); + mClientVersion = js.getLong("v"); + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + return false; + } catch (Exception e) { + // simply catch all exceptions + Log.e(TAG, "httpget gtask_url failed"); + return false; + } + + return true; + } + + private int getActionId() { + return mActionId++; + } + + /*实例化创建一个用于向网络传输数据的对象 + * 使用HttpPost类 + * 返回一个httpPost实例化对象,但里面还没有内容 + */ + private HttpPost createHttpPost() { + HttpPost httpPost = new HttpPost(mPostUrl); + httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8"); + httpPost.setHeader("AT", "1"); + return httpPost; + } + + /*通过URL获取响应后返回的数据,也就是网络上的数据和资源 + * 使用getContentEncoding()获取网络上的资源和数据 + * 返回值就是获取到的资源 + */ + private String getResponseContent(HttpEntity entity) throws IOException { + String contentEncoding = null; + if (entity.getContentEncoding() != null) {//通过URL得到HttpEntity对象,如果不为空则使用getContent()方法创建一个流将数据从网络都过来 + contentEncoding = entity.getContentEncoding().getValue(); + Log.d(TAG, "encoding: " + contentEncoding); + } + + InputStream input = entity.getContent(); + if (contentEncoding != null && contentEncoding.equalsIgnoreCase("gzip")) {//GZIP是使用DEFLATE进行压缩数据的另一个压缩库 + input = new GZIPInputStream(entity.getContent()); + } else if (contentEncoding != null && contentEncoding.equalsIgnoreCase("deflate")) {//DEFLATE是一个无专利的压缩算法,它可以实现无损数据压缩 + Inflater inflater = new Inflater(true); + input = new InflaterInputStream(entity.getContent(), inflater); + } + + try { + InputStreamReader isr = new InputStreamReader(input); + BufferedReader br = new BufferedReader(isr);//是一个包装类,它可以包装字符流,将字符流放入缓存里,先把字符读到缓存里,到缓存满了时候,再读入内存,是为了提供读的效率而设计的 + StringBuilder sb = new StringBuilder(); + + while (true) { + String buff = br.readLine(); + if (buff == null) { + return sb.toString(); + } + sb = sb.append(buff); + } + } finally { + input.close(); + } + } + + /*通过JSON发送请求 + * 请求的具体内容在json的实例化对象js中然后传入 + * 利用UrlEncodedFormEntity entity和httpPost.setEntity(entity)方法把js中的内容放置到httpPost中 + * 执行请求后使用getResponseContent方法得到返回的数据和资源 + * 将资源再次放入json后返回 + */ + private JSONObject postRequest(JSONObject js) throws NetworkFailureException { + if (!mLoggedin) {//未登录 + Log.e(TAG, "please login first"); + throw new ActionFailureException("not logged in"); + } + + //实例化一个httpPost的对象用来向服务器传输数据,在这里就是发送请求,而请求的内容在js里 + HttpPost httpPost = createHttpPost(); + try { + LinkedList list = new LinkedList(); + list.add(new BasicNameValuePair("r", js.toString())); + UrlEncodedFormEntity entity = new UrlEncodedFormEntity(list, "UTF-8"); //UrlEncodedFormEntity()的形式比较单一,是普通的键值对 + httpPost.setEntity(entity); + + // execute the post + //执行这个请求 + HttpResponse response = mHttpClient.execute(httpPost); + String jsString = getResponseContent(response.getEntity()); + return new JSONObject(jsString); + + } catch (ClientProtocolException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new NetworkFailureException("postRequest failed"); + } catch (IOException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new NetworkFailureException("postRequest failed"); + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("unable to convert response content to jsonobject"); + } catch (Exception e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("error occurs when posting request"); + } + } + + /*创建单个任务 + * 传入参数是一个.gtask.data.Task包里Task类的对象 + * 利用json获取Task里的内容,并且创建相应的jsPost + * 利用postRequest得到任务的返回信息 + * 使用task.setGid设置task的new_ID + */ + public void createTask(Task task) throws NetworkFailureException { + commitUpdate(); + try { + JSONObject jsPost = new JSONObject(); + JSONArray actionList = new JSONArray(); + + // action_list + actionList.put(task.getCreateAction(getActionId())); + jsPost.put(GTaskStringUtils.GTASK_JSON_ACTION_LIST, actionList); + + // client_version + jsPost.put(GTaskStringUtils.GTASK_JSON_CLIENT_VERSION, mClientVersion); + + // post + JSONObject jsResponse = postRequest(jsPost); + JSONObject jsResult = (JSONObject) jsResponse.getJSONArray( + GTaskStringUtils.GTASK_JSON_RESULTS).get(0); + task.setGid(jsResult.getString(GTaskStringUtils.GTASK_JSON_NEW_ID)); + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("create task: handing jsonobject failed"); + } + } + + /* + * 创建一个任务列表,与createTask几乎一样,区别就是最后设置的是tasklist的gid + */ + public void createTaskList(TaskList tasklist) throws NetworkFailureException { + commitUpdate(); + try { + JSONObject jsPost = new JSONObject(); + JSONArray actionList = new JSONArray(); + + // action_list + actionList.put(tasklist.getCreateAction(getActionId())); + jsPost.put(GTaskStringUtils.GTASK_JSON_ACTION_LIST, actionList); + + // client version + jsPost.put(GTaskStringUtils.GTASK_JSON_CLIENT_VERSION, mClientVersion); + + // post + JSONObject jsResponse = postRequest(jsPost); + JSONObject jsResult = (JSONObject) jsResponse.getJSONArray( + GTaskStringUtils.GTASK_JSON_RESULTS).get(0); + tasklist.setGid(jsResult.getString(GTaskStringUtils.GTASK_JSON_NEW_ID)); + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("create tasklist: handing jsonobject failed"); + } + } + + /* + * 同步更新操作 + * 使用JSONObject进行数据存储,使用jsPost.put,Put的信息包括UpdateArray和ClientVersion + * 使用postRequest发送这个jspost,进行处理 + */ + public void commitUpdate() throws NetworkFailureException { + if (mUpdateArray != null) { + try { + JSONObject jsPost = new JSONObject(); + + // action_list + jsPost.put(GTaskStringUtils.GTASK_JSON_ACTION_LIST, mUpdateArray); + + // client_version + jsPost.put(GTaskStringUtils.GTASK_JSON_CLIENT_VERSION, mClientVersion); + + postRequest(jsPost); + mUpdateArray = null; + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("commit update: handing jsonobject failed"); + } + } + } + + /* + * 添加更新的事项 + * 调用commitUpdate()实现 + */ + public void addUpdateNode(Node node) throws NetworkFailureException { + if (node != null) { + // too many update items may result in an error + // set max to 10 items + if (mUpdateArray != null && mUpdateArray.length() > 10) { + commitUpdate(); + } + + if (mUpdateArray == null) + mUpdateArray = new JSONArray(); + mUpdateArray.put(node.getUpdateAction(getActionId())); + } + } + + /* + * 移动task,比如讲task移动到不同的task列表中去 + * 通过getGid获取task所属列表的gid + * 通过JSONObject.put(String name, Object value)函数设置移动后的task的相关属性值,从而达到移动的目的 + * 最后还是通过postRequest进行更新后的发送 + */ + public void moveTask(Task task, TaskList preParent, TaskList curParent) + throws NetworkFailureException { + commitUpdate(); + try { + JSONObject jsPost = new JSONObject(); + JSONArray actionList = new JSONArray(); + JSONObject action = new JSONObject(); + + // action_list + action.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE, + GTaskStringUtils.GTASK_JSON_ACTION_TYPE_MOVE); + action.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, getActionId()); + action.put(GTaskStringUtils.GTASK_JSON_ID, task.getGid()); + if (preParent == curParent && task.getPriorSibling() != null) { + // put prioring_sibing_id only if moving within the tasklist and + // it is not the first one + //设置优先级ID,只有当移动是发生在文件中 + action.put(GTaskStringUtils.GTASK_JSON_PRIOR_SIBLING_ID, task.getPriorSibling()); + } + action.put(GTaskStringUtils.GTASK_JSON_SOURCE_LIST, preParent.getGid()); //设置移动前所属列表 + action.put(GTaskStringUtils.GTASK_JSON_DEST_PARENT, curParent.getGid()); //设置当前所属列表 + if (preParent != curParent) { + // put the dest_list only if moving between tasklists + action.put(GTaskStringUtils.GTASK_JSON_DEST_LIST, curParent.getGid()); + } + actionList.put(action); + //最后将ACTION_LIST加入到jsPost中 + jsPost.put(GTaskStringUtils.GTASK_JSON_ACTION_LIST, actionList); + + // client_version + jsPost.put(GTaskStringUtils.GTASK_JSON_CLIENT_VERSION, mClientVersion); + + postRequest(jsPost); + + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("move task: handing jsonobject failed"); + } + } + + /* + * 删除操作节点 + * 还是利用JSON + * 删除过后使用postRequest发送删除后的结果 + */ + public void deleteNode(Node node) throws NetworkFailureException { + commitUpdate(); + try { + JSONObject jsPost = new JSONObject(); + JSONArray actionList = new JSONArray(); + + // action_list + node.setDeleted(true); + actionList.put(node.getUpdateAction(getActionId())); //这里会获取到删除操作的ID,加入到actionLiast中 + jsPost.put(GTaskStringUtils.GTASK_JSON_ACTION_LIST, actionList); + + // client_version + jsPost.put(GTaskStringUtils.GTASK_JSON_CLIENT_VERSION, mClientVersion); + + postRequest(jsPost); + mUpdateArray = null; + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("delete node: handing jsonobject failed"); + } + } + + /* + * 获取任务列表 + * 首先通过GetURI使用getResponseContent从网上获取数据 + * 然后筛选出"_setup("到)}的部分,并且从中获取GTASK_JSON_LISTS的内容返回 + */ + public JSONArray getTaskLists() throws NetworkFailureException { + if (!mLoggedin) { + Log.e(TAG, "please login first"); + throw new ActionFailureException("not logged in"); + } + + try { + HttpGet httpGet = new HttpGet(mGetUrl); + HttpResponse response = null; + response = mHttpClient.execute(httpGet); + + // get the task list + //筛选工作,把筛选出的字符串放入jsString + String resString = getResponseContent(response.getEntity()); + String jsBegin = "_setup("; + String jsEnd = ")}"; + int begin = resString.indexOf(jsBegin); + int end = resString.lastIndexOf(jsEnd); + String jsString = null; + if (begin != -1 && end != -1 && begin < end) { + jsString = resString.substring(begin + jsBegin.length(), end); + } + JSONObject js = new JSONObject(jsString); + //获取GTASK_JSON_LISTS + return js.getJSONObject("t").getJSONArray(GTaskStringUtils.GTASK_JSON_LISTS); + } catch (ClientProtocolException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new NetworkFailureException("gettasklists: httpget failed"); + } catch (IOException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new NetworkFailureException("gettasklists: httpget failed"); + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("get task lists: handing jasonobject failed"); + } + } + + /* + * 通过传入的TASKList的gid,从网络上获取相应属于这个任务列表的任务 + */ + public JSONArray getTaskList(String listGid) throws NetworkFailureException { + commitUpdate(); + try { + JSONObject jsPost = new JSONObject(); + JSONArray actionList = new JSONArray(); + JSONObject action = new JSONObject(); + + // action_list + action.put(GTaskStringUtils.GTASK_JSON_ACTION_TYPE, + GTaskStringUtils.GTASK_JSON_ACTION_TYPE_GETALL); + action.put(GTaskStringUtils.GTASK_JSON_ACTION_ID, getActionId()); + action.put(GTaskStringUtils.GTASK_JSON_LIST_ID, listGid); //这里设置为传入的listGid + action.put(GTaskStringUtils.GTASK_JSON_GET_DELETED, false); + actionList.put(action); + jsPost.put(GTaskStringUtils.GTASK_JSON_ACTION_LIST, actionList); + + // client_version + jsPost.put(GTaskStringUtils.GTASK_JSON_CLIENT_VERSION, mClientVersion); + + JSONObject jsResponse = postRequest(jsPost); + return jsResponse.getJSONArray(GTaskStringUtils.GTASK_JSON_TASKS); + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("get task list: handing jsonobject failed"); + } + } + + public Account getSyncAccount() { + return mAccount; + } + + //重置更新的内容 + public void resetUpdateArray() { + mUpdateArray = null; + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/remote/GTaskManager.java b/other/_210340016刘定衢_代码标注/remote/GTaskManager.java new file mode 100644 index 0000000..a8c1f2a --- /dev/null +++ b/other/_210340016刘定衢_代码标注/remote/GTaskManager.java @@ -0,0 +1,846 @@ +package net.micode.notes.gtask.remote; + +public class GTaskManager { + private static final String TAG = GTaskManager.class.getSimpleName(); + public static final int STATE_SUCCESS = 0; + public static final int STATE_NETWORK_ERROR = 1; + public static final int STATE_INTERNAL_ERROR = 2; + public static final int STATE_SYNC_IN_PROGRESS = 3; + public static final int STATE_SYNC_CANCELLED = 4; + private static GTaskManager mInstance = null; + + private Activity mActivity; + private Context mContext; + private ContentResolver mContentResolver; + private boolean mSyncing; + private boolean mCancelled; + private HashMap mGTaskListHashMap; + private HashMap mGTaskHashMap; + private HashMap mMetaHashMap; + private TaskList mMetaList; + private HashSet mLocalDeleteIdMap; + private HashMap mGidToNid; + private HashMap mNidToGid; + + private GTaskManager() { //对象初始化函数 + mSyncing = false; //正在同步,flase代表未执行 + mCancelled = false; //全局标识,flase代表可以执行 + mGTaskListHashMap = new HashMap(); //<>代表Java的泛型,就是创建一个用类型作为参数的类。 + mGTaskHashMap = new HashMap(); + mMetaHashMap = new HashMap(); + mMetaList = null; + mLocalDeleteIdMap = new HashSet(); + mGidToNid = new HashMap(); //GoogleID to NodeID?? + mNidToGid = new HashMap(); //NodeID to GoogleID???通过hashmap散列表建立映射 + } + + /** + * 包含关键字synchronized,语言级同步,指明该函数可能运行在多线程的环境下。 + * 功能:类初始化函数 + * @author TTS + * @return GtaskManger + */ + public static synchronized GTaskManager getInstance() { //可能运行在多线程环境下,使用语言级同步--synchronized + if (mInstance == null) { + mInstance = new GTaskManager(); + } + return mInstance; + } + + /** + * 包含关键字synchronized,语言级同步,指明该函数可能运行在多线程的环境下。 + * @author TTS + * @param activity + */ + public synchronized void setActivityContext(Activity activity) { + // used for getting auth token + mActivity = activity; + } + + /** + * 核心函数 + * 功能:实现了本地同步操作和远端同步操作 + * @author TTS + * @param context-----获取上下文 + * @param asyncTask-------用于同步的异步操作类 + * @return int + */ + public int sync(Context context, GTaskASyncTask asyncTask) { //核心函数 + if (mSyncing) { + Log.d(TAG, "Sync is in progress"); //创建日志文件(调试信息),debug + return STATE_SYNC_IN_PROGRESS; + } + mContext = context; + mContentResolver = mContext.getContentResolver(); + mSyncing = true; + mCancelled = false; + mGTaskListHashMap.clear(); + mGTaskHashMap.clear(); + mMetaHashMap.clear(); + mLocalDeleteIdMap.clear(); + mGidToNid.clear(); + mNidToGid.clear(); + + try { + GTaskClient client = GTaskClient.getInstance(); //getInstance即为创建一个实例,client--客户机 + client.resetUpdateArray(); //JSONArray类型,reset即置为NULL + + // login google task + if (!mCancelled) { + if (!client.login(mActivity)) { + throw new NetworkFailureException("login google task failed"); + } + } + + // get the task list from google + asyncTask.publishProgess(mContext.getString(R.string.sync_progress_init_list)); + initGTaskList(); //获取Google上的JSONtasklist转为本地TaskList + + // do content sync work + asyncTask.publishProgess(mContext.getString(R.string.sync_progress_syncing)); + syncContent(); + } catch (NetworkFailureException e) { //分为两种异常,此类异常为网络异常 + Log.e(TAG, e.toString()); //创建日志文件(调试信息),error + return STATE_NETWORK_ERROR; + } catch (ActionFailureException e) { //此类异常为操作异常 + Log.e(TAG, e.toString()); + return STATE_INTERNAL_ERROR; + } catch (Exception e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + return STATE_INTERNAL_ERROR; + } finally { + mGTaskListHashMap.clear(); + mGTaskHashMap.clear(); + mMetaHashMap.clear(); + mLocalDeleteIdMap.clear(); + mGidToNid.clear(); + mNidToGid.clear(); + mSyncing = false; + } + + return mCancelled ? STATE_SYNC_CANCELLED : STATE_SUCCESS; + } + + /** + *功能:初始化GtaskList,获取Google上的JSONtasklist转为本地TaskList。 + *获得的数据存储在mMetaList,mGTaskListHashMap,mGTaskHashMap + *@author TTS + *@exception NetworkFailureException + *@return void + */ + private void initGTaskList() throws NetworkFailureException { + if (mCancelled) + return; + GTaskClient client = GTaskClient.getInstance(); //getInstance即为创建一个实例,client应指远端客户机 + try { + //Json对象是Name Value对(即子元素)的无序集合,相当于一个Map对象。JsonObject类是bantouyan-json库对Json对象的抽象,提供操纵Json对象的各种方法。 + //其格式为{"key1":value1,"key2",value2....};key 必须是字符串。 + //因为ajax请求不刷新页面,但配合js可以实现局部刷新,因此json常常被用来作为异步请求的返回对象使用。 + JSONArray jsTaskLists = client.getTaskLists(); //原注释为get task list------lists??? + + // init meta list first + mMetaList = null; //TaskList类型 + for (int i = 0; i < jsTaskLists.length(); i++) { + JSONObject object = jsTaskLists.getJSONObject(i); //JSONObject与JSONArray一个为对象,一个为数组。此处取出单个JASONObject + String gid = object.getString(GTaskStringUtils.GTASK_JSON_ID); + String name = object.getString(GTaskStringUtils.GTASK_JSON_NAME); + + if (name.equals(GTaskStringUtils.MIUI_FOLDER_PREFFIX + GTaskStringUtils.FOLDER_META)) { + mMetaList = new TaskList(); //MetaList意为元表,Tasklist类型,此处为初始化 + mMetaList.setContentByRemoteJSON(object); //将JSON中部分数据复制到自己定义的对象中相对应的数据:name->mname... + + // load meta data + JSONArray jsMetas = client.getTaskList(gid); //原注释为get action_list------list??? + for (int j = 0; j < jsMetas.length(); j++) { + object = (JSONObject) jsMetas.getJSONObject(j); + MetaData metaData = new MetaData(); //继承自Node + metaData.setContentByRemoteJSON(object); + if (metaData.isWorthSaving()) { //if not worth to save,metadata将不加入mMetaList + mMetaList.addChildTask(metaData); + if (metaData.getGid() != null) { + mMetaHashMap.put(metaData.getRelatedGid(), metaData); + } + } + } + } + } + + // create meta list if not existed + if (mMetaList == null) { + mMetaList = new TaskList(); + mMetaList.setName(GTaskStringUtils.MIUI_FOLDER_PREFFIX + + GTaskStringUtils.FOLDER_META); + GTaskClient.getInstance().createTaskList(mMetaList); + } + + // init task list + for (int i = 0; i < jsTaskLists.length(); i++) { + JSONObject object = jsTaskLists.getJSONObject(i); + String gid = object.getString(GTaskStringUtils.GTASK_JSON_ID); //通过getString函数传入本地某个标志数据的名称,获取其在远端的名称。 + String name = object.getString(GTaskStringUtils.GTASK_JSON_NAME); + + if (name.startsWith(GTaskStringUtils.MIUI_FOLDER_PREFFIX) + && !name.equals(GTaskStringUtils.MIUI_FOLDER_PREFFIX + + GTaskStringUtils.FOLDER_META)) { + TaskList tasklist = new TaskList(); //继承自Node + tasklist.setContentByRemoteJSON(object); + mGTaskListHashMap.put(gid, tasklist); + mGTaskHashMap.put(gid, tasklist); //为什么加两遍??? + + // load tasks + JSONArray jsTasks = client.getTaskList(gid); + for (int j = 0; j < jsTasks.length(); j++) { + object = (JSONObject) jsTasks.getJSONObject(j); + gid = object.getString(GTaskStringUtils.GTASK_JSON_ID); + Task task = new Task(); + task.setContentByRemoteJSON(object); + if (task.isWorthSaving()) { + task.setMetaInfo(mMetaHashMap.get(gid)); + tasklist.addChildTask(task); + mGTaskHashMap.put(gid, task); + } + } + } + } + } catch (JSONException e) { + Log.e(TAG, e.toString()); + e.printStackTrace(); + throw new ActionFailureException("initGTaskList: handing JSONObject failed"); + } + } + + /** + * 功能:本地内容同步操作 + * @throws NetworkFailureException + * @return 无返回值 + */ + private void syncContent() throws NetworkFailureException { //本地内容同步操作 + int syncType; + Cursor c = null; //数据库指针 + String gid; //GoogleID?? + Node node; //Node包含Sync_Action的不同类型 + + mLocalDeleteIdMap.clear(); //HashSet类型 + + if (mCancelled) { + return; + } + + // for local deleted note + try { + c = mContentResolver.query(Notes.CONTENT_NOTE_URI, SqlNote.PROJECTION_NOTE, + "(type<>? AND parent_id=?)", new String[] { + String.valueOf(Notes.TYPE_SYSTEM), String.valueOf(Notes.ID_TRASH_FOLER) + }, null); + if (c != null) { + while (c.moveToNext()) { + gid = c.getString(SqlNote.GTASK_ID_COLUMN); + node = mGTaskHashMap.get(gid); + if (node != null) { + mGTaskHashMap.remove(gid); + doContentSync(Node.SYNC_ACTION_DEL_REMOTE, node, c); + } + + mLocalDeleteIdMap.add(c.getLong(SqlNote.ID_COLUMN)); + } + } else { + Log.w(TAG, "failed to query trash folder"); + } + } finally { + if (c != null) { + c.close(); + c = null; + } + } + + // sync folder first + syncFolder(); + + // for note existing in database + try { + c = mContentResolver.query(Notes.CONTENT_NOTE_URI, SqlNote.PROJECTION_NOTE, + "(type=? AND parent_id<>?)", new String[] { + String.valueOf(Notes.TYPE_NOTE), String.valueOf(Notes.ID_TRASH_FOLER) + }, NoteColumns.TYPE + " DESC"); + if (c != null) { + while (c.moveToNext()) { + gid = c.getString(SqlNote.GTASK_ID_COLUMN); + node = mGTaskHashMap.get(gid); + if (node != null) { + mGTaskHashMap.remove(gid); + mGidToNid.put(gid, c.getLong(SqlNote.ID_COLUMN)); //通过hashmap建立联系 + mNidToGid.put(c.getLong(SqlNote.ID_COLUMN), gid); //通过hashmap建立联系 + syncType = node.getSyncAction(c); + } else { + if (c.getString(SqlNote.GTASK_ID_COLUMN).trim().length() == 0) { + // local add + syncType = Node.SYNC_ACTION_ADD_REMOTE; + } else { + // remote delete + syncType = Node.SYNC_ACTION_DEL_LOCAL; + } + } + doContentSync(syncType, node, c); + } + } else { + Log.w(TAG, "failed to query existing note in database"); + } + + } finally { + if (c != null) { + c.close(); + c = null; + } + } + + // go through remaining items + Iterator> iter = mGTaskHashMap.entrySet().iterator(); //Iterator迭代器 + while (iter.hasNext()) { + Map.Entry entry = iter.next(); + node = entry.getValue(); + doContentSync(Node.SYNC_ACTION_ADD_LOCAL, node, null); + } + + // mCancelled can be set by another thread, so we neet to check one by //thread----线程 + // one + // clear local delete table + if (!mCancelled) { + if (!DataUtils.batchDeleteNotes(mContentResolver, mLocalDeleteIdMap)) { + throw new ActionFailureException("failed to batch-delete local deleted notes"); + } + } + + // refresh local sync id + if (!mCancelled) { + GTaskClient.getInstance().commitUpdate(); + refreshLocalSyncId(); + } + + } + + /** + * 功能: + * @author TTS + * @throws NetworkFailureException + */ + private void syncFolder() throws NetworkFailureException { + Cursor c = null; + String gid; + Node node; + int syncType; + + if (mCancelled) { + return; + } + + // for root folder + try { + c = mContentResolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, + Notes.ID_ROOT_FOLDER), SqlNote.PROJECTION_NOTE, null, null, null); + if (c != null) { + c.moveToNext(); + gid = c.getString(SqlNote.GTASK_ID_COLUMN); + node = mGTaskHashMap.get(gid); + if (node != null) { + mGTaskHashMap.remove(gid); + mGidToNid.put(gid, (long) Notes.ID_ROOT_FOLDER); + mNidToGid.put((long) Notes.ID_ROOT_FOLDER, gid); + // for system folder, only update remote name if necessary + if (!node.getName().equals( + GTaskStringUtils.MIUI_FOLDER_PREFFIX + GTaskStringUtils.FOLDER_DEFAULT)) + doContentSync(Node.SYNC_ACTION_UPDATE_REMOTE, node, c); + } else { + doContentSync(Node.SYNC_ACTION_ADD_REMOTE, node, c); + } + } else { + Log.w(TAG, "failed to query root folder"); + } + } finally { + if (c != null) { + c.close(); + c = null; + } + } + + // for call-note folder + try { + c = mContentResolver.query(Notes.CONTENT_NOTE_URI, SqlNote.PROJECTION_NOTE, "(_id=?)", + new String[] { + String.valueOf(Notes.ID_CALL_RECORD_FOLDER) + }, null); + if (c != null) { + if (c.moveToNext()) { + gid = c.getString(SqlNote.GTASK_ID_COLUMN); + node = mGTaskHashMap.get(gid); + if (node != null) { + mGTaskHashMap.remove(gid); + mGidToNid.put(gid, (long) Notes.ID_CALL_RECORD_FOLDER); + mNidToGid.put((long) Notes.ID_CALL_RECORD_FOLDER, gid); + // for system folder, only update remote name if + // necessary + if (!node.getName().equals( + GTaskStringUtils.MIUI_FOLDER_PREFFIX + + GTaskStringUtils.FOLDER_CALL_NOTE)) + doContentSync(Node.SYNC_ACTION_UPDATE_REMOTE, node, c); + } else { + doContentSync(Node.SYNC_ACTION_ADD_REMOTE, node, c); + } + } + } else { + Log.w(TAG, "failed to query call note folder"); + } + } finally { + if (c != null) { + c.close(); + c = null; + } + } + + // for local existing folders + try { + c = mContentResolver.query(Notes.CONTENT_NOTE_URI, SqlNote.PROJECTION_NOTE, + "(type=? AND parent_id<>?)", new String[] { + String.valueOf(Notes.TYPE_FOLDER), String.valueOf(Notes.ID_TRASH_FOLER) + }, NoteColumns.TYPE + " DESC"); + if (c != null) { + while (c.moveToNext()) { + gid = c.getString(SqlNote.GTASK_ID_COLUMN); + node = mGTaskHashMap.get(gid); + if (node != null) { + mGTaskHashMap.remove(gid); + mGidToNid.put(gid, c.getLong(SqlNote.ID_COLUMN)); + mNidToGid.put(c.getLong(SqlNote.ID_COLUMN), gid); + syncType = node.getSyncAction(c); + } else { + if (c.getString(SqlNote.GTASK_ID_COLUMN).trim().length() == 0) { + // local add + syncType = Node.SYNC_ACTION_ADD_REMOTE; + } else { + // remote delete + syncType = Node.SYNC_ACTION_DEL_LOCAL; + } + } + doContentSync(syncType, node, c); + } + } else { + Log.w(TAG, "failed to query existing folder"); + } + } finally { + if (c != null) { + c.close(); + c = null; + } + } + + // for remote add folders + Iterator> iter = mGTaskListHashMap.entrySet().iterator(); + while (iter.hasNext()) { + Map.Entry entry = iter.next(); + gid = entry.getKey(); + node = entry.getValue(); + if (mGTaskHashMap.containsKey(gid)) { + mGTaskHashMap.remove(gid); + doContentSync(Node.SYNC_ACTION_ADD_LOCAL, node, null); + } + } + + if (!mCancelled) + GTaskClient.getInstance().commitUpdate(); + } + + /** + * 功能:syncType分类,addLocalNode,addRemoteNode,deleteNode,updateLocalNode,updateRemoteNode + * @author TTS + * @param syncType + * @param node + * @param c + * @throws NetworkFailureException + */ + private void doContentSync(int syncType, Node node, Cursor c) throws NetworkFailureException { + if (mCancelled) { + return; + } + + MetaData meta; + switch (syncType) { + case Node.SYNC_ACTION_ADD_LOCAL: + addLocalNode(node); + break; + case Node.SYNC_ACTION_ADD_REMOTE: + addRemoteNode(node, c); + break; + case Node.SYNC_ACTION_DEL_LOCAL: + meta = mMetaHashMap.get(c.getString(SqlNote.GTASK_ID_COLUMN)); + if (meta != null) { + GTaskClient.getInstance().deleteNode(meta); + } + mLocalDeleteIdMap.add(c.getLong(SqlNote.ID_COLUMN)); + break; + case Node.SYNC_ACTION_DEL_REMOTE: + meta = mMetaHashMap.get(node.getGid()); + if (meta != null) { + GTaskClient.getInstance().deleteNode(meta); + } + GTaskClient.getInstance().deleteNode(node); + break; + case Node.SYNC_ACTION_UPDATE_LOCAL: + updateLocalNode(node, c); + break; + case Node.SYNC_ACTION_UPDATE_REMOTE: + updateRemoteNode(node, c); + break; + case Node.SYNC_ACTION_UPDATE_CONFLICT: + // merging both modifications maybe a good idea + // right now just use local update simply + updateRemoteNode(node, c); + break; + case Node.SYNC_ACTION_NONE: + break; + case Node.SYNC_ACTION_ERROR: + default: + throw new ActionFailureException("unkown sync action type"); + } + } + + /** + * 功能:本地增加Node + * @author TTS + * @param node + * @throws NetworkFailureException + */ + private void addLocalNode(Node node) throws NetworkFailureException { + if (mCancelled) { + return; + } + + SqlNote sqlNote; + if (node instanceof TaskList) { + if (node.getName().equals( + GTaskStringUtils.MIUI_FOLDER_PREFFIX + GTaskStringUtils.FOLDER_DEFAULT)) { + sqlNote = new SqlNote(mContext, Notes.ID_ROOT_FOLDER); + } else if (node.getName().equals( + GTaskStringUtils.MIUI_FOLDER_PREFFIX + GTaskStringUtils.FOLDER_CALL_NOTE)) { + sqlNote = new SqlNote(mContext, Notes.ID_CALL_RECORD_FOLDER); + } else { + sqlNote = new SqlNote(mContext); + sqlNote.setContent(node.getLocalJSONFromContent()); + sqlNote.setParentId(Notes.ID_ROOT_FOLDER); + } + } else { + sqlNote = new SqlNote(mContext); + JSONObject js = node.getLocalJSONFromContent(); + try { + if (js.has(GTaskStringUtils.META_HEAD_NOTE)) { + JSONObject note = js.getJSONObject(GTaskStringUtils.META_HEAD_NOTE); + if (note.has(NoteColumns.ID)) { + long id = note.getLong(NoteColumns.ID); + if (DataUtils.existInNoteDatabase(mContentResolver, id)) { + // the id is not available, have to create a new one + note.remove(NoteColumns.ID); + } + } + } + + if (js.has(GTaskStringUtils.META_HEAD_DATA)) { + JSONArray dataArray = js.getJSONArray(GTaskStringUtils.META_HEAD_DATA); + for (int i = 0; i < dataArray.length(); i++) { + JSONObject data = dataArray.getJSONObject(i); + if (data.has(DataColumns.ID)) { + long dataId = data.getLong(DataColumns.ID); + if (DataUtils.existInDataDatabase(mContentResolver, dataId)) { + // the data id is not available, have to create + // a new one + data.remove(DataColumns.ID); + } + } + } + + } + } catch (JSONException e) { + Log.w(TAG, e.toString()); + e.printStackTrace(); + } + sqlNote.setContent(js); + + Long parentId = mGidToNid.get(((Task) node).getParent().getGid()); + if (parentId == null) { + Log.e(TAG, "cannot find task's parent id locally"); + throw new ActionFailureException("cannot add local node"); + } + sqlNote.setParentId(parentId.longValue()); + } + + // create the local node + sqlNote.setGtaskId(node.getGid()); + sqlNote.commit(false); + + // update gid-nid mapping + mGidToNid.put(node.getGid(), sqlNote.getId()); + mNidToGid.put(sqlNote.getId(), node.getGid()); + + // update meta + updateRemoteMeta(node.getGid(), sqlNote); + } + + /** + * 功能:update本地node + * @author TTS + * @param node + * ----同步操作的基础数据类型 + * @param c + * ----Cursor + * @throws NetworkFailureException + */ + private void updateLocalNode(Node node, Cursor c) throws NetworkFailureException { + if (mCancelled) { + return; + } + + SqlNote sqlNote; + // update the note locally + sqlNote = new SqlNote(mContext, c); + sqlNote.setContent(node.getLocalJSONFromContent()); + + Long parentId = (node instanceof Task) ? mGidToNid.get(((Task) node).getParent().getGid()) + : new Long(Notes.ID_ROOT_FOLDER); + if (parentId == null) { + Log.e(TAG, "cannot find task's parent id locally"); + throw new ActionFailureException("cannot update local node"); + } + sqlNote.setParentId(parentId.longValue()); + sqlNote.commit(true); + + // update meta info + updateRemoteMeta(node.getGid(), sqlNote); + } + + /** + * 功能:远程增加Node + * 需要updateRemoteMeta + * @author TTS + * @param node + * ----同步操作的基础数据类型 + * @param c + * --Cursor + * @throws NetworkFailureException + */ + private void addRemoteNode(Node node, Cursor c) throws NetworkFailureException { + if (mCancelled) { + return; + } + + SqlNote sqlNote = new SqlNote(mContext, c); //从本地mContext中获取内容 + Node n; + + // update remotely + if (sqlNote.isNoteType()) { + Task task = new Task(); + task.setContentByLocalJSON(sqlNote.getContent()); + + String parentGid = mNidToGid.get(sqlNote.getParentId()); + if (parentGid == null) { + Log.e(TAG, "cannot find task's parent tasklist"); //调试信息 + throw new ActionFailureException("cannot add remote task"); + } + mGTaskListHashMap.get(parentGid).addChildTask(task); //在本地生成的GTaskList中增加子结点 + + //登录远程服务器,创建Task + GTaskClient.getInstance().createTask(task); + n = (Node) task; + + // add meta + updateRemoteMeta(task.getGid(), sqlNote); + } else { + TaskList tasklist = null; + + // we need to skip folder if it has already existed + String folderName = GTaskStringUtils.MIUI_FOLDER_PREFFIX; + if (sqlNote.getId() == Notes.ID_ROOT_FOLDER) + folderName += GTaskStringUtils.FOLDER_DEFAULT; + else if (sqlNote.getId() == Notes.ID_CALL_RECORD_FOLDER) + folderName += GTaskStringUtils.FOLDER_CALL_NOTE; + else + folderName += sqlNote.getSnippet(); + + //iterator迭代器,通过统一的接口迭代所有的map元素 + Iterator> iter = mGTaskListHashMap.entrySet().iterator(); + while (iter.hasNext()) { + Map.Entry entry = iter.next(); + String gid = entry.getKey(); + TaskList list = entry.getValue(); + + if (list.getName().equals(folderName)) { + tasklist = list; + if (mGTaskHashMap.containsKey(gid)) { + mGTaskHashMap.remove(gid); + } + break; + } + } + + // no match we can add now + if (tasklist == null) { + tasklist = new TaskList(); + tasklist.setContentByLocalJSON(sqlNote.getContent()); + GTaskClient.getInstance().createTaskList(tasklist); + mGTaskListHashMap.put(tasklist.getGid(), tasklist); + } + n = (Node) tasklist; + } + + // update local note + sqlNote.setGtaskId(n.getGid()); + sqlNote.commit(false); + sqlNote.resetLocalModified(); + sqlNote.commit(true); + + // gid-id mapping //创建id间的映射 + mGidToNid.put(n.getGid(), sqlNote.getId()); + mNidToGid.put(sqlNote.getId(), n.getGid()); + } + + /** + * 功能:更新远端的Node,包含meta更新(updateRemoteMeta) + * @author TTS + * @param node + * ----同步操作的基础数据类型 + * @param c + * --Cursor + * @throws NetworkFailureException + */ + private void updateRemoteNode(Node node, Cursor c) throws NetworkFailureException { + if (mCancelled) { + return; + } + + SqlNote sqlNote = new SqlNote(mContext, c); + + // update remotely + node.setContentByLocalJSON(sqlNote.getContent()); + GTaskClient.getInstance().addUpdateNode(node); //GTaskClient用途为从本地登陆远端服务器 + + // update meta + updateRemoteMeta(node.getGid(), sqlNote); + + // move task if necessary + if (sqlNote.isNoteType()) { + Task task = (Task) node; + TaskList preParentList = task.getParent(); + //preParentList为通过node获取的父节点列表 + + String curParentGid = mNidToGid.get(sqlNote.getParentId()); + //curParentGid为通过光标在数据库中找到sqlNote的mParentId,再通过mNidToGid由long类型转为String类型的Gid + + if (curParentGid == null) { + Log.e(TAG, "cannot find task's parent tasklist"); + throw new ActionFailureException("cannot update remote task"); + } + TaskList curParentList = mGTaskListHashMap.get(curParentGid); + //通过HashMap找到对应Gid的TaskList + + if (preParentList != curParentList) { //????????????? + preParentList.removeChildTask(task); + curParentList.addChildTask(task); + GTaskClient.getInstance().moveTask(task, preParentList, curParentList); + } + } + + // clear local modified flag + sqlNote.resetLocalModified(); + //commit到本地数据库 + sqlNote.commit(true); + } + + /** + * 功能:升级远程meta。 meta---元数据----计算机文件系统管理数据---管理数据的数据。 + * @author TTS + * @param gid + * ---GoogleID为String类型 + * @param sqlNote + * ---同步前的数据库操作,故使用类SqlNote + * @throws NetworkFailureException + */ + private void updateRemoteMeta(String gid, SqlNote sqlNote) throws NetworkFailureException { + if (sqlNote != null && sqlNote.isNoteType()) { + MetaData metaData = mMetaHashMap.get(gid); + if (metaData != null) { + metaData.setMeta(gid, sqlNote.getContent()); + GTaskClient.getInstance().addUpdateNode(metaData); + } else { + metaData = new MetaData(); + metaData.setMeta(gid, sqlNote.getContent()); + mMetaList.addChildTask(metaData); + mMetaHashMap.put(gid, metaData); + GTaskClient.getInstance().createTask(metaData); + } + } + } + + /** + * 功能:刷新本地,给sync的ID对应上最后更改过的对象 + * @author TTS + * @return void + * @throws NetworkFailureException + */ + private void refreshLocalSyncId() throws NetworkFailureException { + if (mCancelled) { + return; + } + + // get the latest gtask list //获取最近的(最晚的)gtask list + mGTaskHashMap.clear(); + mGTaskListHashMap.clear(); + mMetaHashMap.clear(); + initGTaskList(); + + Cursor c = null; + try { + c = mContentResolver.query(Notes.CONTENT_NOTE_URI, SqlNote.PROJECTION_NOTE, + "(type<>? AND parent_id<>?)", new String[] { + String.valueOf(Notes.TYPE_SYSTEM), String.valueOf(Notes.ID_TRASH_FOLER) + }, NoteColumns.TYPE + " DESC"); //query语句:五个参数,NoteColumns.TYPE + " DESC"-----为按类型递减顺序返回查询结果。new String[] {String.valueOf(Notes.TYPE_SYSTEM), String.valueOf(Notes.ID_TRASH_FOLER)}------为选择参数。"(type<>? AND parent_id<>?)"-------指明返回行过滤器。SqlNote.PROJECTION_NOTE--------应返回的数据列的名字。Notes.CONTENT_NOTE_URI--------contentProvider包含所有数据集所对应的uri + if (c != null) { + while (c.moveToNext()) { + String gid = c.getString(SqlNote.GTASK_ID_COLUMN); + Node node = mGTaskHashMap.get(gid); + if (node != null) { + mGTaskHashMap.remove(gid); + ContentValues values = new ContentValues(); //在ContentValues中创建键值对。准备通过contentResolver写入数据 + values.put(NoteColumns.SYNC_ID, node.getLastModified()); + mContentResolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, //进行批量更改,选择参数为NULL,应该可以用insert替换,参数分别为表名和需要更新的value对象。 + c.getLong(SqlNote.ID_COLUMN)), values, null, null); + } else { + Log.e(TAG, "something is missed"); + throw new ActionFailureException( + "some local items don't have gid after sync"); + } + } + } else { + Log.w(TAG, "failed to query local note to refresh sync id"); + } + } finally { + if (c != null) { + c.close(); + c = null; + } + } + } + + /** + * 功能:获取同步账号,mAccount.name + * @author TTS + * @return String + */ + public String getSyncAccount() { + return GTaskClient.getInstance().getSyncAccount().name; + } + + /** + * 功能:取消同步,置mCancelled为true + * @author TTS + */ + public void cancelSync() { + mCancelled = true; + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_代码标注/remote/GTaskSyncService.java b/other/_210340016刘定衢_代码标注/remote/GTaskSyncService.java new file mode 100644 index 0000000..bf7fb43 --- /dev/null +++ b/other/_210340016刘定衢_代码标注/remote/GTaskSyncService.java @@ -0,0 +1,124 @@ +package net.micode.notes.gtask.remote; + +/* + * Service是在一段不定的时间运行在后台,不和用户交互的应用组件 + * 主要方法: + * private void startSync() 启动一个同步工作 + * private void cancelSync() 取消同步 + * public void onCreate() + * public int onStartCommand(Intent intent, int flags, int startId) service生命周期的组成部分,相当于重启service(比如在被暂停之后),而不是创建一个新的service + * public void onLowMemory() 在没有内存的情况下如果存在service则结束掉这的service + * public IBinder onBind() + * public void sendBroadcast(String msg) 发送同步的相关通知 + * public static void startSync(Activity activity) + * public static void cancelSync(Context context) + * public static boolean isSyncing() 判读是否在进行同步 + * public static String getProgressString() 获取当前进度的信息 + */ + +public class GTaskSyncService extends Service { + public final static String ACTION_STRING_NAME = "sync_action_type"; + + public final static int ACTION_START_SYNC = 0; + + public final static int ACTION_CANCEL_SYNC = 1; + + public final static int ACTION_INVALID = 2; + + public final static String GTASK_SERVICE_BROADCAST_NAME = "net.micode.notes.gtask.remote.gtask_sync_service"; + + public final static String GTASK_SERVICE_BROADCAST_IS_SYNCING = "isSyncing"; + + public final static String GTASK_SERVICE_BROADCAST_PROGRESS_MSG = "progressMsg"; + + private static GTaskASyncTask mSyncTask = null; + + private static String mSyncProgress = ""; + + //开始一个同步的工作 + private void startSync() { + if (mSyncTask == null) { + mSyncTask = new GTaskASyncTask(this, new GTaskASyncTask.OnCompleteListener() { + public void onComplete() { + mSyncTask = null; + sendBroadcast(""); + stopSelf(); + } + }); + sendBroadcast(""); + mSyncTask.execute(); //这个函数让任务是以单线程队列方式或线程池队列方式运行 + } + } + + + private void cancelSync() { + if (mSyncTask != null) { + mSyncTask.cancelSync(); + } + } + + @Override + public void onCreate() { //初始化一个service + mSyncTask = null; + } + + @Override + public int onStartCommand(Intent intent, int flags, int startId) { + Bundle bundle = intent.getExtras(); + if (bundle != null && bundle.containsKey(ACTION_STRING_NAME)) { + switch (bundle.getInt(ACTION_STRING_NAME, ACTION_INVALID)) { + //两种情况,开始同步或者取消同步 + case ACTION_START_SYNC: + startSync(); + break; + case ACTION_CANCEL_SYNC: + cancelSync(); + break; + default: + break; + } + return START_STICKY; //等待新的intent来是这个service继续运行 + } + return super.onStartCommand(intent, flags, startId); + } + + @Override + public void onLowMemory() { + if (mSyncTask != null) { + mSyncTask.cancelSync(); + } + } + + public IBinder onBind(Intent intent) { //不知道干吗用的 + return null; + } + + public void sendBroadcast(String msg) { + mSyncProgress = msg; + Intent intent = new Intent(GTASK_SERVICE_BROADCAST_NAME); //创建一个新的Intent + intent.putExtra(GTASK_SERVICE_BROADCAST_IS_SYNCING, mSyncTask != null); //附加INTENT中的相应参数的值 + intent.putExtra(GTASK_SERVICE_BROADCAST_PROGRESS_MSG, msg); + sendBroadcast(intent); //发送这个通知 + } + + public static void startSync(Activity activity) {//执行一个service,service的内容里的同步动作就是开始同步 + GTaskManager.getInstance().setActivityContext(activity); + Intent intent = new Intent(activity, GTaskSyncService.class); + intent.putExtra(GTaskSyncService.ACTION_STRING_NAME, GTaskSyncService.ACTION_START_SYNC); + activity.startService(intent); + } + + public static void cancelSync(Context context) {//执行一个service,service的内容里的同步动作就是取消同步 + Intent intent = new Intent(context, GTaskSyncService.class); + intent.putExtra(GTaskSyncService.ACTION_STRING_NAME, GTaskSyncService.ACTION_CANCEL_SYNC); + context.startService(intent); + } + + public static boolean isSyncing() { + return mSyncTask != null; + } + + public static String getProgressString() { + return mSyncProgress; + } +} \ No newline at end of file diff --git a/other/_210340016刘定衢_实践总结报告.docx b/other/_210340016刘定衢_实践总结报告.docx new file mode 100644 index 0000000..0606ef0 Binary files /dev/null and b/other/_210340016刘定衢_实践总结报告.docx differ diff --git a/other/_210340045左天祥_代码标注/Contact.java b/other/_210340045左天祥_代码标注/Contact.java new file mode 100644 index 0000000..47d5eb8 --- /dev/null +++ b/other/_210340045左天祥_代码标注/Contact.java @@ -0,0 +1,75 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.data; + +import android.content.Context; +import android.database.Cursor; +import android.provider.ContactsContract.CommonDataKinds.Phone; +import android.provider.ContactsContract.Data; +import android.telephony.PhoneNumberUtils; +import android.util.Log; + +import java.util.HashMap; + +public class Contact { //联系人 + private static HashMap sContactCache; + private static final String TAG = "Contact"; +//定义字符串 + private static final String CALLER_ID_SELECTION = "PHONE_NUMBERS_EQUAL(" + Phone.NUMBER + + ",?) AND " + Data.MIMETYPE + "='" + Phone.CONTENT_ITEM_TYPE + "'" + + " AND " + Data.RAW_CONTACT_ID + " IN " + + "(SELECT raw_contact_id " + + " FROM phone_lookup" + + " WHERE min_match = '+')"; +//获取联系人 + public static String getContact(Context context, String phoneNumber) { + if(sContactCache == null) { + sContactCache = new HashMap(); + } +//检查HashMap中有无phoneNumber信息 + if(sContactCache.containsKey(phoneNumber)) { + return sContactCache.get(phoneNumber); + } + + String selection = CALLER_ID_SELECTION.replace("+", + PhoneNumberUtils.toCallerIDMinMatch(phoneNumber)); + //查找数据库里的phoneNumber + Cursor cursor = context.getContentResolver().query( + Data.CONTENT_URI, + new String [] { Phone.DISPLAY_NAME }, + selection, + new String[] { phoneNumber }, + null); +//判定查询结果,moveToFirst()返回第一条 + if (cursor != null && cursor.moveToFirst()) { + try {//寻找到相关信息 + String name = cursor.getString(0); + sContactCache.put(phoneNumber, name); + return name; + //异常 + } catch (IndexOutOfBoundsException e) { + Log.e(TAG, " Cursor get string error " + e.toString()); + return null; + } finally { + cursor.close(); + }//没有找到相关信息 + } else { + Log.d(TAG, "No contact matched with number:" + phoneNumber); + return null; + } + } +} diff --git a/other/_210340045左天祥_代码标注/Note.java b/other/_210340045左天祥_代码标注/Note.java new file mode 100644 index 0000000..97e7f40 --- /dev/null +++ b/other/_210340045左天祥_代码标注/Note.java @@ -0,0 +1,256 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.model; +import android.content.ContentProviderOperation; //批量更新、插入、删除数据 +import android.content.ContentProviderResult;//操作结果 +import android.content.ContentUris;//添加和获取Uri后面的ID +import android.content.ContentValues;//一种存储基本数据类型数据的存储机制 +import android.content.Context;//使用该类弄清楚调用者的实例 +import android.content.OperationApplicationException;//操作应用程序容错 +import android.net.Uri;//待操作的数据 +import android.os.RemoteException;//远程容错 +import android.util.Log;//输出日志 + +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.CallNote; +import net.micode.notes.data.Notes.DataColumns; +import net.micode.notes.data.Notes.NoteColumns; +import net.micode.notes.data.Notes.TextNote; + +import java.util.ArrayList; + + +public class Note { + private ContentValues mNoteDiffValues; + private NoteData mNoteData; + private static final String TAG = "Note"; + /** + * Create a new note id for adding a new note to databases + */ + public static synchronized long getNewNoteId(Context context, long folderId) { + // Create a new note in the database + ContentValues values = new ContentValues(); + long createdTime = System.currentTimeMillis(); + values.put(NoteColumns.CREATED_DATE, createdTime); + values.put(NoteColumns.MODIFIED_DATE, createdTime); + values.put(NoteColumns.TYPE, Notes.TYPE_NOTE); + values.put(NoteColumns.LOCAL_MODIFIED, 1); + values.put(NoteColumns.PARENT_ID, folderId);//把数据写入数据库表格 + Uri uri = context.getContentResolver().insert(Notes.CONTENT_NOTE_URI, values);//ContentResolver()主要是实现外部应用对ContentProvider中的数据进行添加、删除、修改和查询操作 + + + long noteId = 0; + try { + noteId = Long.valueOf(uri.getPathSegments().get(1)); + } catch (NumberFormatException e) { + Log.e(TAG, "Get note id error :" + e.toString()); + noteId = 0; + }//try-catch异常处理 + if (noteId == -1) { + throw new IllegalStateException("Wrong note id:" + noteId); + } + return noteId; + } + + public Note() { + mNoteDiffValues = new ContentValues(); + mNoteData = new NoteData(); + }//定义两个变量用来存储便签的数据,一个是存储便签属性、一个是存储便签内容 + + public void setNoteValue(String key, String value) { + mNoteDiffValues.put(key, value); + mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1); + mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis()); + }//设置数据库表格的便签属性数据 + + public void setTextData(String key, String value) { + mNoteData.setTextData(key, value); + }//设置数据库表格的便签文本内容的数据 + + public void setTextDataId(long id) { + mNoteData.setTextDataId(id); + }//设置文本数据的ID + + public long getTextDataId() { + return mNoteData.mTextDataId; + } //得到文本数据的ID + + public void setCallDataId(long id) { + mNoteData.setCallDataId(id); + } //设置电话号码数据的ID + + + public void setCallData(String key, String value) { + mNoteData.setCallData(key, value); + } //得到电话号码数据的ID + + public boolean isLocalModified() { + return mNoteDiffValues.size() > 0 || mNoteData.isLocalModified(); + }//判断是否为本地修改 + + public boolean syncNote(Context context, long noteId) { + if (noteId <= 0) { + throw new IllegalArgumentException("Wrong note id:" + noteId); + } + + if (!isLocalModified()) { + return true; + } + + /** + * In theory, once data changed, the note should be updated on {@link NoteColumns#LOCAL_MODIFIED} and + * {@link NoteColumns#MODIFIED_DATE}. For data safety, though update note fails, we also update the + * note data info + */ + if (context.getContentResolver().update( + ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId), mNoteDiffValues, null, + null) == 0) { + Log.e(TAG, "Update note error, should not happen"); + // Do not return, fall through + } + mNoteDiffValues.clear(); + + if (mNoteData.isLocalModified() + && (mNoteData.pushIntoContentResolver(context, noteId) == null)) { + return false; + } + + return true; + }//判断数据是否同步 + + private class NoteData { //定义一个基本便签内容的数据类,包含文本数据和电话号码数据 + private long mTextDataId; + + private ContentValues mTextDataValues; //文本数据 + + private long mCallDataId; + + private ContentValues mCallDataValues; //电话号码数据 + + private static final String TAG = "NoteData"; + + public NoteData() { + mTextDataValues = new ContentValues(); + mCallDataValues = new ContentValues(); + mTextDataId = 0; + mCallDataId = 0; + } + //上述几个函数的具体实现 + boolean isLocalModified() { + return mTextDataValues.size() > 0 || mCallDataValues.size() > 0; + } + + void setTextDataId(long id) { + if(id <= 0) { + throw new IllegalArgumentException("Text data id should larger than 0"); + } + mTextDataId = id; + } + + void setCallDataId(long id) { + if (id <= 0) { + throw new IllegalArgumentException("Call data id should larger than 0"); + } + mCallDataId = id; + } + + void setCallData(String key, String value) { + mCallDataValues.put(key, value); + mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1); + mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis()); + } + + void setTextData(String key, String value) { + mTextDataValues.put(key, value); + mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1); + mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis()); + } + //将新的数据通过Uri的操作存储到数据库 + Uri pushIntoContentResolver(Context context, long noteId) { + /** + * Check for safety + */ + if (noteId <= 0) { + throw new IllegalArgumentException("Wrong note id:" + noteId); + }//判断数据是否合法 + + ArrayList operationList = new ArrayList(); + ContentProviderOperation.Builder builder = null; //数据库操作列表 + + if(mTextDataValues.size() > 0) { + mTextDataValues.put(DataColumns.NOTE_ID, noteId); + if (mTextDataId == 0) { + mTextDataValues.put(DataColumns.MIME_TYPE, TextNote.CONTENT_ITEM_TYPE); + Uri uri = context.getContentResolver().insert(Notes.CONTENT_DATA_URI, + mTextDataValues); + try { + setTextDataId(Long.valueOf(uri.getPathSegments().get(1))); + } catch (NumberFormatException e) { + Log.e(TAG, "Insert new text data fail with noteId" + noteId); + mTextDataValues.clear(); + return null; + } + } else { + builder = ContentProviderOperation.newUpdate(ContentUris.withAppendedId( + Notes.CONTENT_DATA_URI, mTextDataId)); + builder.withValues(mTextDataValues); + operationList.add(builder.build()); + } + mTextDataValues.clear(); + }//文本数据存入DataColumns + + if(mCallDataValues.size() > 0) { + mCallDataValues.put(DataColumns.NOTE_ID, noteId); + if (mCallDataId == 0) { + mCallDataValues.put(DataColumns.MIME_TYPE, CallNote.CONTENT_ITEM_TYPE); + Uri uri = context.getContentResolver().insert(Notes.CONTENT_DATA_URI, + mCallDataValues); + try { + setCallDataId(Long.valueOf(uri.getPathSegments().get(1))); + } catch (NumberFormatException e) { + Log.e(TAG, "Insert new call data fail with noteId" + noteId); + mCallDataValues.clear(); + return null; + } + } else { + builder = ContentProviderOperation.newUpdate(ContentUris.withAppendedId( + Notes.CONTENT_DATA_URI, mCallDataId)); + builder.withValues(mCallDataValues); + operationList.add(builder.build()); + } + mCallDataValues.clear(); + }//电话号码数据存入DataColumns + + + if (operationList.size() > 0) { + try { + ContentProviderResult[] results = context.getContentResolver().applyBatch( + Notes.AUTHORITY, operationList); + return (results == null || results.length == 0 || results[0] == null) ? null + : ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId); + } catch (RemoteException e) { + Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage())); + return null; + } catch (OperationApplicationException e) { + Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage())); + return null; + } + }//存储过程中的异常处理 + return null; + } + } +} diff --git a/other/_210340045左天祥_代码标注/Notes.java b/other/_210340045左天祥_代码标注/Notes.java new file mode 100644 index 0000000..de7eb39 --- /dev/null +++ b/other/_210340045左天祥_代码标注/Notes.java @@ -0,0 +1,281 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.data; + +import android.net.Uri; +//在Notes类中定义常量 +public class Notes { + public static final String AUTHORITY = "micode_notes"; + public static final String TAG = "Notes"; + //在设置NoteColumns.TYPE的值时需要用到以下三个常量 + public static final int TYPE_NOTE = 0; + public static final int TYPE_FOLDER = 1; + public static final int TYPE_SYSTEM = 2; + + /** + * Following IDs are system folders' identifiers + * {@link Notes#ID_ROOT_FOLDER } is default folder + * {@link Notes#ID_TEMPARAY_FOLDER } is for notes belonging no folder + * {@link Notes#ID_CALL_RECORD_FOLDER} is to store call records + */ + public static final int ID_ROOT_FOLDER = 0; + public static final int ID_TEMPARAY_FOLDER = -1; + public static final int ID_CALL_RECORD_FOLDER = -2; + public static final int ID_TRASH_FOLER = -3; + + public static final String INTENT_EXTRA_ALERT_DATE = "net.micode.notes.alert_date"; + public static final String INTENT_EXTRA_BACKGROUND_ID = "net.micode.notes.background_color_id"; + public static final String INTENT_EXTRA_WIDGET_ID = "net.micode.notes.widget_id"; + public static final String INTENT_EXTRA_WIDGET_TYPE = "net.micode.notes.widget_type"; + public static final String INTENT_EXTRA_FOLDER_ID = "net.micode.notes.folder_id"; + public static final String INTENT_EXTRA_CALL_DATE = "net.micode.notes.call_date"; + + public static final int TYPE_WIDGET_INVALIDE = -1; + public static final int TYPE_WIDGET_2X = 0; + public static final int TYPE_WIDGET_4X = 1; + + public static class DataConstants { + public static final String NOTE = TextNote.CONTENT_ITEM_TYPE; + public static final String CALL_NOTE = CallNote.CONTENT_ITEM_TYPE; + } + + /** + * Uri to query all notes and folders + */ + public static final Uri CONTENT_NOTE_URI = Uri.parse("content://" + AUTHORITY + "/note");//定义指针查询便签和文件夹 + + /** + * Uri to query data + */ + public static final Uri CONTENT_DATA_URI = Uri.parse("content://" + AUTHORITY + "/data");//定义指针查询数据 +//定义NoteColumns的常量,用于创建数据库表头 + public interface NoteColumns { + /** + * The unique ID for a row + *

Type: INTEGER (long)

+ */ + public static final String ID = "_id"; + + /** + * The parent's id for note or folder + *

Type: INTEGER (long)

+ */ + public static final String PARENT_ID = "parent_id"; + + /** + * Created data for note or folder + *

Type: INTEGER (long)

+ */ + public static final String CREATED_DATE = "created_date"; + + /** + * Latest modified date + *

Type: INTEGER (long)

+ */ + public static final String MODIFIED_DATE = "modified_date"; + + + /** + * Alert date + *

Type: INTEGER (long)

+ */ + public static final String ALERTED_DATE = "alert_date"; + + /** + * Folder's name or text content of note + *

Type: TEXT

+ */ + public static final String SNIPPET = "snippet"; + + /** + * Note's widget id + *

Type: INTEGER (long)

+ */ + public static final String WIDGET_ID = "widget_id"; + + /** + * Note's widget type + *

Type: INTEGER (long)

+ */ + public static final String WIDGET_TYPE = "widget_type"; + + /** + * Note's background color's id + *

Type: INTEGER (long)

+ */ + public static final String BG_COLOR_ID = "bg_color_id"; + + /** + * For text note, it doesn't has attachment, for multi-media + * note, it has at least one attachment + *

Type: INTEGER

+ */ + public static final String HAS_ATTACHMENT = "has_attachment"; + + /** + * Folder's count of notes + *

Type: INTEGER (long)

+ */ + public static final String NOTES_COUNT = "notes_count"; + + /** + * The file type: folder or note + *

Type: INTEGER

+ */ + public static final String TYPE = "type"; + + /** + * The last sync id + *

Type: INTEGER (long)

+ */ + public static final String SYNC_ID = "sync_id";//同步 + + /** + * Sign to indicate local modified or not + *

Type: INTEGER

+ */ + public static final String LOCAL_MODIFIED = "local_modified"; + + /** + * Original parent id before moving into temporary folder + *

Type : INTEGER

+ */ + public static final String ORIGIN_PARENT_ID = "origin_parent_id"; + + /** + * The gtask id + *

Type : TEXT

+ */ + public static final String GTASK_ID = "gtask_id"; + + /** + * The version code + *

Type : INTEGER (long)

+ */ + public static final String VERSION = "version"; + }//定义便签属性的常量 +//定义DataColumns的常量,用于创建数据库的表头 + public interface DataColumns { + /** + * The unique ID for a row + *

Type: INTEGER (long)

+ */ + public static final String ID = "_id"; + + /** + * The MIME type of the item represented by this row. + *

Type: Text

+ */ + public static final String MIME_TYPE = "mime_type"; + + /** + * The reference id to note that this data belongs to + *

Type: INTEGER (long)

+ */ + public static final String NOTE_ID = "note_id"; + + /** + * Created data for note or folder + *

Type: INTEGER (long)

+ */ + public static final String CREATED_DATE = "created_date"; + + /** + * Latest modified date + *

Type: INTEGER (long)

+ */ + public static final String MODIFIED_DATE = "modified_date"; + + /** + * Data's content + *

Type: TEXT

+ */ + public static final String CONTENT = "content"; + + + /** + * Generic data column, the meaning is {@link #MIMETYPE} specific, used for + * integer data type + *

Type: INTEGER

+ */ + public static final String DATA1 = "data1"; + + /** + * Generic data column, the meaning is {@link #MIMETYPE} specific, used for + * integer data type + *

Type: INTEGER

+ */ + public static final String DATA2 = "data2"; + + /** + * Generic data column, the meaning is {@link #MIMETYPE} specific, used for + * TEXT data type + *

Type: TEXT

+ */ + public static final String DATA3 = "data3"; + + /** + * Generic data column, the meaning is {@link #MIMETYPE} specific, used for + * TEXT data type + *

Type: TEXT

+ */ + public static final String DATA4 = "data4"; + + /** + * Generic data column, the meaning is {@link #MIMETYPE} specific, used for + * TEXT data type + *

Type: TEXT

+ */ + public static final String DATA5 = "data5"; + }//定义存储便签内容数据 + + public static final class TextNote implements DataColumns { + /** + * Mode to indicate the text in check list mode or not + *

Type: Integer 1:check list mode 0: normal mode

+ */ + public static final String MODE = DATA1; + + public static final int MODE_CHECK_LIST = 1; + + public static final String CONTENT_TYPE = "vnd.android.cursor.dir/text_note"; + + public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/text_note"; + + public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/text_note"); + }//文本内容数据结构 + + public static final class CallNote implements DataColumns { + /** + * Call date for this record + *

Type: INTEGER (long)

+ */ + public static final String CALL_DATE = DATA1; + + /** + * Phone number for this record + *

Type: TEXT

+ */ + public static final String PHONE_NUMBER = DATA3; + + public static final String CONTENT_TYPE = "vnd.android.cursor.dir/call_note"; + + public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/call_note"; + + public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/call_note"); + }//电话内容数据结构 +} diff --git a/other/_210340045左天祥_代码标注/NotesDatabaseHelper.java b/other/_210340045左天祥_代码标注/NotesDatabaseHelper.java new file mode 100644 index 0000000..16963d5 --- /dev/null +++ b/other/_210340045左天祥_代码标注/NotesDatabaseHelper.java @@ -0,0 +1,363 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.data; + +import android.content.ContentValues;//用于保存数据信息,以便数据库操作时使用 +import android.content.Context;//加载、访问资源 +import android.database.sqlite.SQLiteDatabase;//提供了添加insert()、删除delete()、更新update()、查询query()的操作方法,配合content.values +import android.database.sqlite.SQLiteOpenHelper;//管理数据的创建和版本更新 +import android.util.Log; + +import net.micode.notes.data.Notes.DataColumns; +import net.micode.notes.data.Notes.DataConstants; +import net.micode.notes.data.Notes.NoteColumns; +//数据库操作,用SQLOpenhelper对note和文件进行数据库操作 + +public class NotesDatabaseHelper extends SQLiteOpenHelper { + private static final String DB_NAME = "note.db"; + + private static final int DB_VERSION = 4; + + public interface TABLE {//接口,分为note和data + public static final String NOTE = "note"; + + public static final String DATA = "data"; + } + + private static final String TAG = "NotesDatabaseHelper"; + + private static NotesDatabaseHelper mInstance; + + private static final String CREATE_NOTE_TABLE_SQL = + "CREATE TABLE " + TABLE.NOTE + "(" + + NoteColumns.ID + " INTEGER PRIMARY KEY," + + NoteColumns.PARENT_ID + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.ALERTED_DATE + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.BG_COLOR_ID + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.CREATED_DATE + " INTEGER NOT NULL DEFAULT (strftime('%s','now') * 1000)," + + NoteColumns.HAS_ATTACHMENT + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.MODIFIED_DATE + " INTEGER NOT NULL DEFAULT (strftime('%s','now') * 1000)," + + NoteColumns.NOTES_COUNT + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.SNIPPET + " TEXT NOT NULL DEFAULT ''," + + NoteColumns.TYPE + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.WIDGET_ID + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.WIDGET_TYPE + " INTEGER NOT NULL DEFAULT -1," + + NoteColumns.SYNC_ID + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.LOCAL_MODIFIED + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.ORIGIN_PARENT_ID + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.GTASK_ID + " TEXT NOT NULL DEFAULT ''," + + NoteColumns.VERSION + " INTEGER NOT NULL DEFAULT 0" + + ")";//数据库里需要存储的项目名称,类似表格表头 + + private static final String CREATE_DATA_TABLE_SQL = + "CREATE TABLE " + TABLE.DATA + "(" + + DataColumns.ID + " INTEGER PRIMARY KEY," + + DataColumns.MIME_TYPE + " TEXT NOT NULL," + + DataColumns.NOTE_ID + " INTEGER NOT NULL DEFAULT 0," + + NoteColumns.CREATED_DATE + " INTEGER NOT NULL DEFAULT (strftime('%s','now') * 1000)," + + NoteColumns.MODIFIED_DATE + " INTEGER NOT NULL DEFAULT (strftime('%s','now') * 1000)," + + DataColumns.CONTENT + " TEXT NOT NULL DEFAULT ''," + + DataColumns.DATA1 + " INTEGER," + + DataColumns.DATA2 + " INTEGER," + + DataColumns.DATA3 + " TEXT NOT NULL DEFAULT ''," + + DataColumns.DATA4 + " TEXT NOT NULL DEFAULT ''," + + DataColumns.DATA5 + " TEXT NOT NULL DEFAULT ''" + + ")"; //与上同 + + private static final String CREATE_DATA_NOTE_ID_INDEX_SQL = + "CREATE INDEX IF NOT EXISTS note_id_index ON " + + TABLE.DATA + "(" + DataColumns.NOTE_ID + ");"; //存储便签编号的数据表格 + + /** + * Increase folder's note count when move note to the folder + */ + private static final String NOTE_INCREASE_FOLDER_COUNT_ON_UPDATE_TRIGGER = + "CREATE TRIGGER increase_folder_count_on_update "+ + " AFTER UPDATE OF " + NoteColumns.PARENT_ID + " ON " + TABLE.NOTE + + " BEGIN " + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.NOTES_COUNT + "=" + NoteColumns.NOTES_COUNT + " + 1" + + " WHERE " + NoteColumns.ID + "=new." + NoteColumns.PARENT_ID + ";" + + " END"; //向文件夹移入一个Note后需要更改的数据表格 + + /** + * Decrease folder's note count when move note from folder + */ + private static final String NOTE_DECREASE_FOLDER_COUNT_ON_UPDATE_TRIGGER = + "CREATE TRIGGER decrease_folder_count_on_update " + + " AFTER UPDATE OF " + NoteColumns.PARENT_ID + " ON " + TABLE.NOTE + + " BEGIN " + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.NOTES_COUNT + "=" + NoteColumns.NOTES_COUNT + "-1" + + " WHERE " + NoteColumns.ID + "=old." + NoteColumns.PARENT_ID + + " AND " + NoteColumns.NOTES_COUNT + ">0" + ";" + + " END"; //在文件夹里移出一个Note后需要更改的数据表格 + + /** + * Increase folder's note count when insert new note to the folder + */ + private static final String NOTE_INCREASE_FOLDER_COUNT_ON_INSERT_TRIGGER = + "CREATE TRIGGER increase_folder_count_on_insert " + + " AFTER INSERT ON " + TABLE.NOTE + + " BEGIN " + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.NOTES_COUNT + "=" + NoteColumns.NOTES_COUNT + " + 1" + + " WHERE " + NoteColumns.ID + "=new." + NoteColumns.PARENT_ID + ";" + + " END"; //在文件夹里插入一个Note后需要更改的数据表格 + + /** + * Decrease folder's note count when delete note from the folder + */ + private static final String NOTE_DECREASE_FOLDER_COUNT_ON_DELETE_TRIGGER = + "CREATE TRIGGER decrease_folder_count_on_delete " + + " AFTER DELETE ON " + TABLE.NOTE + + " BEGIN " + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.NOTES_COUNT + "=" + NoteColumns.NOTES_COUNT + "-1" + + " WHERE " + NoteColumns.ID + "=old." + NoteColumns.PARENT_ID + + " AND " + NoteColumns.NOTES_COUNT + ">0;" + + " END"; //在文件夹里删除一个Note后需要更改的数据表格 + + /** + * Update note's content when insert data with type {@link DataConstants#NOTE} + */ + private static final String DATA_UPDATE_NOTE_CONTENT_ON_INSERT_TRIGGER = + "CREATE TRIGGER update_note_content_on_insert " + + " AFTER INSERT ON " + TABLE.DATA + + " WHEN new." + DataColumns.MIME_TYPE + "='" + DataConstants.NOTE + "'" + + " BEGIN" + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.SNIPPET + "=new." + DataColumns.CONTENT + + " WHERE " + NoteColumns.ID + "=new." + DataColumns.NOTE_ID + ";" + + " END"; //在文件夹里对一个Note导入新数据后需要更改的数据表格 + + /** + * Update note's content when data with {@link DataConstants#NOTE} type has changed + */ + private static final String DATA_UPDATE_NOTE_CONTENT_ON_UPDATE_TRIGGER = + "CREATE TRIGGER update_note_content_on_update " + + " AFTER UPDATE ON " + TABLE.DATA + + " WHEN old." + DataColumns.MIME_TYPE + "='" + DataConstants.NOTE + "'" + + " BEGIN" + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.SNIPPET + "=new." + DataColumns.CONTENT + + " WHERE " + NoteColumns.ID + "=new." + DataColumns.NOTE_ID + ";" + + " END"; //文件夹里Note数据修改后需要更改的数据表格 + + /** + * Update note's content when data with {@link DataConstants#NOTE} type has deleted + */ + private static final String DATA_UPDATE_NOTE_CONTENT_ON_DELETE_TRIGGER = + "CREATE TRIGGER update_note_content_on_delete " + + " AFTER delete ON " + TABLE.DATA + + " WHEN old." + DataColumns.MIME_TYPE + "='" + DataConstants.NOTE + "'" + + " BEGIN" + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.SNIPPET + "=''" + + " WHERE " + NoteColumns.ID + "=old." + DataColumns.NOTE_ID + ";" + + " END"; //文件夹里删除Note数据后需要更改的数据表格 + + /** + * Delete datas belong to note which has been deleted + */ + private static final String NOTE_DELETE_DATA_ON_DELETE_TRIGGER = + "CREATE TRIGGER delete_data_on_delete " + + " AFTER DELETE ON " + TABLE.NOTE + + " BEGIN" + + " DELETE FROM " + TABLE.DATA + + " WHERE " + DataColumns.NOTE_ID + "=old." + NoteColumns.ID + ";" + + " END"; //删除已删除便签的数据后需要更改的数据表格 + + /** + * Delete notes belong to folder which has been deleted + */ + private static final String FOLDER_DELETE_NOTES_ON_DELETE_TRIGGER = + "CREATE TRIGGER folder_delete_notes_on_delete " + + " AFTER DELETE ON " + TABLE.NOTE + + " BEGIN" + + " DELETE FROM " + TABLE.NOTE + + " WHERE " + NoteColumns.PARENT_ID + "=old." + NoteColumns.ID + ";" + + " END"; //删除已删除文件夹的便签后需要更改的数据表格 + + /** + * Move notes belong to folder which has been moved to trash folder + */ + private static final String FOLDER_MOVE_NOTES_ON_TRASH_TRIGGER = + "CREATE TRIGGER folder_move_notes_on_trash " + + " AFTER UPDATE ON " + TABLE.NOTE + + " WHEN new." + NoteColumns.PARENT_ID + "=" + Notes.ID_TRASH_FOLER + + " BEGIN" + + " UPDATE " + TABLE.NOTE + + " SET " + NoteColumns.PARENT_ID + "=" + Notes.ID_TRASH_FOLER + + " WHERE " + NoteColumns.PARENT_ID + "=old." + NoteColumns.ID + ";" + + " END"; //还原垃圾桶里的便签后需要更改的数据表格 + + public NotesDatabaseHelper(Context context) { + super(context, DB_NAME, null, DB_VERSION); + } //构造函数,传入数据库名称和版本 + + public void createNoteTable(SQLiteDatabase db) { + db.execSQL(CREATE_NOTE_TABLE_SQL); + reCreateNoteTableTriggers(db); + createSystemFolder(db); + Log.d(TAG, "note table has been created"); + } //创建存储便签属性的表格 + + private void reCreateNoteTableTriggers(SQLiteDatabase db) { + db.execSQL("DROP TRIGGER IF EXISTS increase_folder_count_on_update"); + db.execSQL("DROP TRIGGER IF EXISTS decrease_folder_count_on_update"); + db.execSQL("DROP TRIGGER IF EXISTS decrease_folder_count_on_delete"); + db.execSQL("DROP TRIGGER IF EXISTS delete_data_on_delete"); + db.execSQL("DROP TRIGGER IF EXISTS increase_folder_count_on_insert"); + db.execSQL("DROP TRIGGER IF EXISTS folder_delete_notes_on_delete"); + db.execSQL("DROP TRIGGER IF EXISTS folder_move_notes_on_trash"); + + db.execSQL(NOTE_INCREASE_FOLDER_COUNT_ON_UPDATE_TRIGGER); + db.execSQL(NOTE_DECREASE_FOLDER_COUNT_ON_UPDATE_TRIGGER); + db.execSQL(NOTE_DECREASE_FOLDER_COUNT_ON_DELETE_TRIGGER); + db.execSQL(NOTE_DELETE_DATA_ON_DELETE_TRIGGER); + db.execSQL(NOTE_INCREASE_FOLDER_COUNT_ON_INSERT_TRIGGER); + db.execSQL(FOLDER_DELETE_NOTES_ON_DELETE_TRIGGER); + db.execSQL(FOLDER_MOVE_NOTES_ON_TRASH_TRIGGER); + } //execSQL是数据库操作API,是更改行为的SQL语句,用来创建上述定义的表格,删除原有数据库的触发器后,再创建新的数据库 + + private void createSystemFolder(SQLiteDatabase db) { + ContentValues values = new ContentValues(); + + /** + * call record foler for call notes + */ + values.put(NoteColumns.ID, Notes.ID_CALL_RECORD_FOLDER); + values.put(NoteColumns.TYPE, Notes.TYPE_SYSTEM); + db.insert(TABLE.NOTE, null, values); + + /** + * root folder which is default folder + */ + values.clear(); + values.put(NoteColumns.ID, Notes.ID_ROOT_FOLDER); + values.put(NoteColumns.TYPE, Notes.TYPE_SYSTEM); + db.insert(TABLE.NOTE, null, values); + + /** + * temporary folder which is used for moving note + */ + values.clear(); + values.put(NoteColumns.ID, Notes.ID_TEMPARAY_FOLDER); + values.put(NoteColumns.TYPE, Notes.TYPE_SYSTEM); + db.insert(TABLE.NOTE, null, values); + + /** + * create trash folder + */ + values.clear(); + values.put(NoteColumns.ID, Notes.ID_TRASH_FOLER); + values.put(NoteColumns.TYPE, Notes.TYPE_SYSTEM); + db.insert(TABLE.NOTE, null, values); + } //创建几个系统文件夹 + + public void createDataTable(SQLiteDatabase db) { + db.execSQL(CREATE_DATA_TABLE_SQL); + reCreateDataTableTriggers(db); + db.execSQL(CREATE_DATA_NOTE_ID_INDEX_SQL); + Log.d(TAG, "data table has been created"); + } //创建存储便签内容的表格 + + private void reCreateDataTableTriggers(SQLiteDatabase db) { + db.execSQL("DROP TRIGGER IF EXISTS update_note_content_on_insert"); + db.execSQL("DROP TRIGGER IF EXISTS update_note_content_on_update"); + db.execSQL("DROP TRIGGER IF EXISTS update_note_content_on_delete"); + + db.execSQL(DATA_UPDATE_NOTE_CONTENT_ON_INSERT_TRIGGER); + db.execSQL(DATA_UPDATE_NOTE_CONTENT_ON_UPDATE_TRIGGER); + db.execSQL(DATA_UPDATE_NOTE_CONTENT_ON_DELETE_TRIGGER); + } //与上同 + + static synchronized NotesDatabaseHelper getInstance(Context context) { + if (mInstance == null) { + mInstance = new NotesDatabaseHelper(context); + } + return mInstance; + } //解决同一时刻只能有一个线程执行 + //有时一个类需要被所有其它类使用,但又只能被实例化一次,是个服务类,定义一次,其它类使用同一个这个类的实例 + + @Override + public void onCreate(SQLiteDatabase db) { + createNoteTable(db); + createDataTable(db); + } //实现上面创建的两个表格 + + @Override + public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { + boolean reCreateTriggers = false; + boolean skipV2 = false; + + if (oldVersion == 1) { + upgradeToV2(db); + skipV2 = true; // this upgrade including the upgrade from v2 to v3 + oldVersion++; + } + + if (oldVersion == 2 && !skipV2) { + upgradeToV3(db); + reCreateTriggers = true; + oldVersion++; + } + + if (oldVersion == 3) { + upgradeToV4(db); + oldVersion++; + } + + if (reCreateTriggers) { + reCreateNoteTableTriggers(db); + reCreateDataTableTriggers(db); + } + + if (oldVersion != newVersion) { + throw new IllegalStateException("Upgrade notes database to version " + newVersion + + "fails"); + } + } //数据库内容的更改或版本的更新 + + private void upgradeToV2(SQLiteDatabase db) { + db.execSQL("DROP TABLE IF EXISTS " + TABLE.NOTE); + db.execSQL("DROP TABLE IF EXISTS " + TABLE.DATA); + createNoteTable(db); + createDataTable(db); + } //更新至V2版本 + + private void upgradeToV3(SQLiteDatabase db) { + // drop unused triggers + db.execSQL("DROP TRIGGER IF EXISTS update_note_modified_date_on_insert"); + db.execSQL("DROP TRIGGER IF EXISTS update_note_modified_date_on_delete"); + db.execSQL("DROP TRIGGER IF EXISTS update_note_modified_date_on_update"); + // add a column for gtask id + db.execSQL("ALTER TABLE " + TABLE.NOTE + " ADD COLUMN " + NoteColumns.GTASK_ID + + " TEXT NOT NULL DEFAULT ''"); + // add a trash system folder + ContentValues values = new ContentValues(); + values.put(NoteColumns.ID, Notes.ID_TRASH_FOLER); + values.put(NoteColumns.TYPE, Notes.TYPE_SYSTEM); + db.insert(TABLE.NOTE, null, values); + } //更新至V3版本 + + private void upgradeToV4(SQLiteDatabase db) { + db.execSQL("ALTER TABLE " + TABLE.NOTE + " ADD COLUMN " + NoteColumns.VERSION + + " INTEGER NOT NULL DEFAULT 0"); + } //更新至V4版本 +} diff --git a/other/_210340045左天祥_代码标注/NotesProvider.java b/other/_210340045左天祥_代码标注/NotesProvider.java new file mode 100644 index 0000000..ea2c384 --- /dev/null +++ b/other/_210340045左天祥_代码标注/NotesProvider.java @@ -0,0 +1,320 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.data; + + +import android.app.SearchManager; +import android.content.ContentProvider; +import android.content.ContentUris; +import android.content.ContentValues; +import android.content.Intent; +import android.content.UriMatcher; +import android.database.Cursor; +import android.database.sqlite.SQLiteDatabase; +import android.net.Uri; +import android.text.TextUtils; +import android.util.Log; + +import net.micode.notes.R; +import net.micode.notes.data.Notes.DataColumns; +import net.micode.notes.data.Notes.NoteColumns; +import net.micode.notes.data.NotesDatabaseHelper.TABLE; +//为存储和获取数据提供接口,可以在不同应用程序之间共享数据 +//ContentProvider提供了query查询,insert插入,update更新,delete删除,getType得到数据类型方法 + +public class NotesProvider extends ContentProvider { + //UriMatcher匹配Uri + private static final UriMatcher mMatcher; + + private NotesDatabaseHelper mHelper; + + private static final String TAG = "NotesProvider"; + + private static final int URI_NOTE = 1; + private static final int URI_NOTE_ITEM = 2; + private static final int URI_DATA = 3; + private static final int URI_DATA_ITEM = 4; + + private static final int URI_SEARCH = 5; + private static final int URI_SEARCH_SUGGEST = 6; + + static {//创建UriMatcher时,调用UriMatcher(UriMatcher.NO_Match)表示不匹配任何路径的返回码 + mMatcher = new UriMatcher(UriMatcher.NO_MATCH); + //注册所有需要匹配Uri路径 + mMatcher.addURI(Notes.AUTHORITY, "note", URI_NOTE); + mMatcher.addURI(Notes.AUTHORITY, "note/#", URI_NOTE_ITEM); + mMatcher.addURI(Notes.AUTHORITY, "data", URI_DATA); + mMatcher.addURI(Notes.AUTHORITY, "data/#", URI_DATA_ITEM); + mMatcher.addURI(Notes.AUTHORITY, "search", URI_SEARCH); + mMatcher.addURI(Notes.AUTHORITY, SearchManager.SUGGEST_URI_PATH_QUERY, URI_SEARCH_SUGGEST); + mMatcher.addURI(Notes.AUTHORITY, SearchManager.SUGGEST_URI_PATH_QUERY + "/*", URI_SEARCH_SUGGEST); + } + + /** + * x'0A' represents the '\n' character in sqlite. For title and content in the search result, + * we will trim '\n' and white space in order to show more information. + */ + //声明NOTES_SEARCH_PROJECTION + private static final String NOTES_SEARCH_PROJECTION = NoteColumns.ID + "," + + NoteColumns.ID + " AS " + SearchManager.SUGGEST_COLUMN_INTENT_EXTRA_DATA + "," + + "TRIM(REPLACE(" + NoteColumns.SNIPPET + ", x'0A','')) AS " + SearchManager.SUGGEST_COLUMN_TEXT_1 + "," + + "TRIM(REPLACE(" + NoteColumns.SNIPPET + ", x'0A','')) AS " + SearchManager.SUGGEST_COLUMN_TEXT_2 + "," + + R.drawable.search_result + " AS " + SearchManager.SUGGEST_COLUMN_ICON_1 + "," + + "'" + Intent.ACTION_VIEW + "' AS " + SearchManager.SUGGEST_COLUMN_INTENT_ACTION + "," + + "'" + Notes.TextNote.CONTENT_TYPE + "' AS " + SearchManager.SUGGEST_COLUMN_INTENT_DATA; + //声明NOTES_SNIPPET_SEARCH_QUERY + private static String NOTES_SNIPPET_SEARCH_QUERY = "SELECT " + NOTES_SEARCH_PROJECTION + + " FROM " + TABLE.NOTE + + " WHERE " + NoteColumns.SNIPPET + " LIKE ?" + + " AND " + NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER + + " AND " + NoteColumns.TYPE + "=" + Notes.TYPE_NOTE; + + @Override + //Context在onCreate()中被初始化 + //对mHelper进行实例化 + public boolean onCreate() { + mHelper = NotesDatabaseHelper.getInstance(getContext()); + return true; + } + + @Override + //查找uri在数据库中的对应位置 + public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, + String sortOrder) { + Cursor c = null; + //获取可读数据库 + SQLiteDatabase db = mHelper.getReadableDatabase(); + String id = null; + //匹配查找uri + switch (mMatcher.match(uri)) { //对不同匹配值,在数据库中查找相应条目 + case URI_NOTE: + c = db.query(TABLE.NOTE, projection, selection, selectionArgs, null, null, + sortOrder); + break; + case URI_NOTE_ITEM: + id = uri.getPathSegments().get(1); + c = db.query(TABLE.NOTE, projection, NoteColumns.ID + "=" + id + + parseSelection(selection), selectionArgs, null, null, sortOrder); + break; + case URI_DATA: + c = db.query(TABLE.DATA, projection, selection, selectionArgs, null, null, + sortOrder); + break; + case URI_DATA_ITEM: + id = uri.getPathSegments().get(1); + c = db.query(TABLE.DATA, projection, DataColumns.ID + "=" + id + + parseSelection(selection), selectionArgs, null, null, sortOrder); + break; + case URI_SEARCH: + case URI_SEARCH_SUGGEST: + if (sortOrder != null || projection != null) { //不合法的参数异常 + throw new IllegalArgumentException( + "do not specify sortOrder, selection, selectionArgs, or projection" + "with this query"); + } + + String searchString = null; + if (mMatcher.match(uri) == URI_SEARCH_SUGGEST) { + if (uri.getPathSegments().size() > 1) { //getPathSegments()方法得到一个String的List,在uri.getPathSegments().get(1)是第二个元素 + searchString = uri.getPathSegments().get(1); + } + } else { + searchString = uri.getQueryParameter("pattern"); + } + + if (TextUtils.isEmpty(searchString)) { + return null; + } + + try { + searchString = String.format("%%%s%%", searchString); + c = db.rawQuery(NOTES_SNIPPET_SEARCH_QUERY, + new String[] { searchString }); + } catch (IllegalStateException ex) { + Log.e(TAG, "got exception: " + ex.toString()); + } + break; + default: //抛出异常 + throw new IllegalArgumentException("Unknown URI " + uri); + } + if (c != null) { + c.setNotificationUri(getContext().getContentResolver(), uri); + } + return c; + } + + @Override + //插入一个uri + public Uri insert(Uri uri, ContentValues values) { //获得可写数据库 + SQLiteDatabase db = mHelper.getWritableDatabase(); + long dataId = 0, noteId = 0, insertedId = 0; + switch (mMatcher.match(uri)) { //新增一个条目 + case URI_NOTE: + insertedId = noteId = db.insert(TABLE.NOTE, null, values); + break; + //如果存在,查询NOTE_ID + case URI_DATA: + if (values.containsKey(DataColumns.NOTE_ID)) { + noteId = values.getAsLong(DataColumns.NOTE_ID); + } else { + Log.d(TAG, "Wrong data format without note id:" + values.toString()); + } + insertedId = dataId = db.insert(TABLE.DATA, null, values); + break; + default: + throw new IllegalArgumentException("Unknown URI " + uri); + } + // Notify the note uri + if (noteId > 0) { + getContext().getContentResolver().notifyChange( + ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId), null); + } + + // Notify the data uri + //notifyChange获得一个ContextResolver对象并更新其中的内容 + if (dataId > 0) { + getContext().getContentResolver().notifyChange( + ContentUris.withAppendedId(Notes.CONTENT_DATA_URI, dataId), null); + } + //返回插入的uri路径 + return ContentUris.withAppendedId(uri, insertedId); + } + + @Override + //删除一个uri + public int delete(Uri uri, String selection, String[] selectionArgs) { //Uri代表要操作的数据 + int count = 0; + String id = null; + //获得可写数据库 + SQLiteDatabase db = mHelper.getWritableDatabase(); + boolean deleteData = false; + switch (mMatcher.match(uri)) { + case URI_NOTE: + selection = "(" + selection + ") AND " + NoteColumns.ID + ">0 "; + count = db.delete(TABLE.NOTE, selection, selectionArgs); + break; + case URI_NOTE_ITEM: + id = uri.getPathSegments().get(1); + /** + * ID that smaller than 0 is system folder which is not allowed to + * trash + */ + long noteId = Long.valueOf(id); + if (noteId <= 0) { + break; + } + count = db.delete(TABLE.NOTE, + NoteColumns.ID + "=" + id + parseSelection(selection), selectionArgs); + break; + case URI_DATA: + count = db.delete(TABLE.DATA, selection, selectionArgs); + deleteData = true; + break; + case URI_DATA_ITEM: + id = uri.getPathSegments().get(1); + count = db.delete(TABLE.DATA, + DataColumns.ID + "=" + id + parseSelection(selection), selectionArgs); + deleteData = true; + break; + default: + throw new IllegalArgumentException("Unknown URI " + uri); + } + if (count > 0) { + if (deleteData) { + getContext().getContentResolver().notifyChange(Notes.CONTENT_NOTE_URI, null); + } + getContext().getContentResolver().notifyChange(uri, null); + } + return count; + } + + @Override + //更新一个uri + public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { + int count = 0; + String id = null; + SQLiteDatabase db = mHelper.getWritableDatabase(); + boolean updateData = false; + switch (mMatcher.match(uri)) { + case URI_NOTE: + increaseNoteVersion(-1, selection, selectionArgs); + count = db.update(TABLE.NOTE, values, selection, selectionArgs); + break; + case URI_NOTE_ITEM: + id = uri.getPathSegments().get(1); + increaseNoteVersion(Long.valueOf(id), selection, selectionArgs); + count = db.update(TABLE.NOTE, values, NoteColumns.ID + "=" + id + + parseSelection(selection), selectionArgs); + break; + case URI_DATA: + count = db.update(TABLE.DATA, values, selection, selectionArgs); + updateData = true; + break; + case URI_DATA_ITEM: + id = uri.getPathSegments().get(1); + count = db.update(TABLE.DATA, values, DataColumns.ID + "=" + id + + parseSelection(selection), selectionArgs); + updateData = true; + break; + default: + throw new IllegalArgumentException("Unknown URI " + uri); + } + + if (count > 0) { + if (updateData) { + getContext().getContentResolver().notifyChange(Notes.CONTENT_NOTE_URI, null); + } + getContext().getContentResolver().notifyChange(uri, null); + } + return count; + } + //将字符串解析为规定格式 + private String parseSelection(String selection) { + return (!TextUtils.isEmpty(selection) ? " AND (" + selection + ')' : ""); + } + //增加一个noteVersion + private void increaseNoteVersion(long id, String selection, String[] selectionArgs) { + StringBuilder sql = new StringBuilder(120); + sql.append("UPDATE "); + sql.append(TABLE.NOTE); + sql.append(" SET "); + sql.append(NoteColumns.VERSION); + sql.append("=" + NoteColumns.VERSION + "+1 "); + + if (id > 0 || !TextUtils.isEmpty(selection)) { + sql.append(" WHERE "); + } + if (id > 0) { + sql.append(NoteColumns.ID + "=" + String.valueOf(id)); + } + if (!TextUtils.isEmpty(selection)) { + String selectString = id > 0 ? parseSelection(selection) : selection; + for (String args : selectionArgs) { + selectString = selectString.replaceFirst("\\?", args); + } + sql.append(selectString); + } + //execSQL()方法可以执行insert、delete、update以及CREATE TABLE之类有更改行为的SQL语句 + mHelper.getWritableDatabase().execSQL(sql.toString()); + } + + @Override + public String getType(Uri uri) { + // TODO Auto-generated method stub + return null; + } + +} diff --git a/other/_210340045左天祥_代码标注/WorkingNote.java b/other/_210340045左天祥_代码标注/WorkingNote.java new file mode 100644 index 0000000..a8c9020 --- /dev/null +++ b/other/_210340045左天祥_代码标注/WorkingNote.java @@ -0,0 +1,377 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.model; + +import android.appwidget.AppWidgetManager; +import android.content.ContentUris; +import android.content.Context; +import android.database.Cursor; +import android.text.TextUtils; +import android.util.Log; + +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.CallNote; +import net.micode.notes.data.Notes.DataColumns; +import net.micode.notes.data.Notes.DataConstants; +import net.micode.notes.data.Notes.NoteColumns; +import net.micode.notes.data.Notes.TextNote; +import net.micode.notes.tool.ResourceParser.NoteBgResources; + + +public class WorkingNote { + // Note for the working note + private Note mNote; + // Note Id + private long mNoteId; + // Note content + private String mContent; + // Note mode + private int mMode; + + private long mAlertDate; + + private long mModifiedDate; + + private int mBgColorId; + + private int mWidgetId; + + private int mWidgetType; + + private long mFolderId; + + private Context mContext; + + private static final String TAG = "WorkingNote"; + + private boolean mIsDeleted; + + private NoteSettingChangedListener mNoteSettingStatusListener; + // 声明 DATA_PROJECTION字符串数组 + public static final String[] DATA_PROJECTION = new String[] { + DataColumns.ID, + DataColumns.CONTENT, + DataColumns.MIME_TYPE, + DataColumns.DATA1, + DataColumns.DATA2, + DataColumns.DATA3, + DataColumns.DATA4, + }; + // 声明 NOTE_PROJECTION字符串数组 + public static final String[] NOTE_PROJECTION = new String[] { + NoteColumns.PARENT_ID, + NoteColumns.ALERTED_DATE, + NoteColumns.BG_COLOR_ID, + NoteColumns.WIDGET_ID, + NoteColumns.WIDGET_TYPE, + NoteColumns.MODIFIED_DATE + }; + + private static final int DATA_ID_COLUMN = 0; + + private static final int DATA_CONTENT_COLUMN = 1; + + private static final int DATA_MIME_TYPE_COLUMN = 2; + + private static final int DATA_MODE_COLUMN = 3; + + private static final int NOTE_PARENT_ID_COLUMN = 0; + + private static final int NOTE_ALERTED_DATE_COLUMN = 1; + + private static final int NOTE_BG_COLOR_ID_COLUMN = 2; + + private static final int NOTE_WIDGET_ID_COLUMN = 3; + + private static final int NOTE_WIDGET_TYPE_COLUMN = 4; + + private static final int NOTE_MODIFIED_DATE_COLUMN = 5; + + // New note construct + private WorkingNote(Context context, long folderId) { + mContext = context; + mAlertDate = 0; + mModifiedDate = System.currentTimeMillis(); + mFolderId = folderId; + mNote = new Note(); + mNoteId = 0; + mIsDeleted = false; + mMode = 0; + mWidgetType = Notes.TYPE_WIDGET_INVALIDE; + } + // WorkingNote的构造函数 + // Existing note construct + private WorkingNote(Context context, long noteId, long folderId) { + mContext = context; + mNoteId = noteId; + mFolderId = folderId; + mIsDeleted = false; + mNote = new Note(); + loadNote(); + } + // 加载Note + // 通过数据库调用query函数找到第一个条目 + private void loadNote() { + Cursor cursor = mContext.getContentResolver().query( + ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, mNoteId), NOTE_PROJECTION, null, + null, null); +// 如果存在,储存相应信息 + if (cursor != null) { + if (cursor.moveToFirst()) { + mFolderId = cursor.getLong(NOTE_PARENT_ID_COLUMN); + mBgColorId = cursor.getInt(NOTE_BG_COLOR_ID_COLUMN); + mWidgetId = cursor.getInt(NOTE_WIDGET_ID_COLUMN); + mWidgetType = cursor.getInt(NOTE_WIDGET_TYPE_COLUMN); + mAlertDate = cursor.getLong(NOTE_ALERTED_DATE_COLUMN); + mModifiedDate = cursor.getLong(NOTE_MODIFIED_DATE_COLUMN); + } + cursor.close(); + // 如果不存在,报错 + } else { + Log.e(TAG, "No note with id:" + mNoteId); + throw new IllegalArgumentException("Unable to find note with id " + mNoteId); + } + loadNoteData(); + } + // 加载NoteData + private void loadNoteData() { + Cursor cursor = mContext.getContentResolver().query(Notes.CONTENT_DATA_URI, DATA_PROJECTION, + DataColumns.NOTE_ID + "=?", new String[] { + String.valueOf(mNoteId) + }, null); + + if (cursor != null) {// 信息不为空 + if (cursor.moveToFirst()) {// 查看第一项是否存在 + do { + String type = cursor.getString(DATA_MIME_TYPE_COLUMN); + if (DataConstants.NOTE.equals(type)) { + mContent = cursor.getString(DATA_CONTENT_COLUMN); + mMode = cursor.getInt(DATA_MODE_COLUMN); + mNote.setTextDataId(cursor.getLong(DATA_ID_COLUMN)); + } else if (DataConstants.CALL_NOTE.equals(type)) { + mNote.setCallDataId(cursor.getLong(DATA_ID_COLUMN)); + } else { + Log.d(TAG, "Wrong note type with type:" + type); + } + } while (cursor.moveToNext()); //遍历所有项,直到为空 + } + cursor.close(); + } else { + Log.e(TAG, "No data with id:" + mNoteId); + throw new IllegalArgumentException("Unable to find note's data with id " + mNoteId); + } + } + // 创建空的Note + // 参数:context,文件夹id,widget,背景颜色 + public static WorkingNote createEmptyNote(Context context, long folderId, int widgetId, + int widgetType, int defaultBgColorId) { + WorkingNote note = new WorkingNote(context, folderId); + // 设定相关属性 + note.setBgColorId(defaultBgColorId); + note.setWidgetId(widgetId); + note.setWidgetType(widgetType); + return note; + } + + public static WorkingNote load(Context context, long id) { + return new WorkingNote(context, id, 0); + } + // 保存Note + public synchronized boolean saveNote() { + if (isWorthSaving()) { //是否值得保存 + if (!existInDatabase()) { // 是否存在于数据库中 + if ((mNoteId = Note.getNewNoteId(mContext, mFolderId)) == 0) { + Log.e(TAG, "Create new note fail with id:" + mNoteId); + return false; + } + } + + mNote.syncNote(mContext, mNoteId); + + /** + * Update widget content if there exist any widget of this note + */ + if (mWidgetId != AppWidgetManager.INVALID_APPWIDGET_ID + && mWidgetType != Notes.TYPE_WIDGET_INVALIDE + && mNoteSettingStatusListener != null) { + mNoteSettingStatusListener.onWidgetChanged(); + } + return true; + } else { + return false; + } + } + // 是否在数据库中存在 + public boolean existInDatabase() { + return mNoteId > 0; + } + // 是否值得保存 + private boolean isWorthSaving() { // 被删除,或 不在数据库中 内容为空 ,或 本地已保存过 + if (mIsDeleted || (!existInDatabase() && TextUtils.isEmpty(mContent)) + || (existInDatabase() && !mNote.isLocalModified())) { + return false; + } else { + return true; + } + } + // 设置mNoteSettingStatusListener + public void setOnSettingStatusChangedListener(NoteSettingChangedListener l) { + mNoteSettingStatusListener = l; + } + // 设置AlertDate + // 若 mAlertDate与date不同,则更改mAlertDate并设定NoteValue + public void setAlertDate(long date, boolean set) { + if (date != mAlertDate) { + mAlertDate = date; + mNote.setNoteValue(NoteColumns.ALERTED_DATE, String.valueOf(mAlertDate)); + } + if (mNoteSettingStatusListener != null) { + mNoteSettingStatusListener.onClockAlertChanged(date, set); + } + } + // 设定删除标记 + public void markDeleted(boolean mark) { + // 设定标记 + mIsDeleted = mark; + if (mWidgetId != AppWidgetManager.INVALID_APPWIDGET_ID + && mWidgetType != Notes.TYPE_WIDGET_INVALIDE && mNoteSettingStatusListener != null) { + mNoteSettingStatusListener.onWidgetChanged(); // 调用mNoteSettingStatusListener的 onWidgetChanged方法 + } + } + // 设定背景颜色 + public void setBgColorId(int id) { + if (id != mBgColorId) { //条件为 id != mBgColorId + mBgColorId = id; + if (mNoteSettingStatusListener != null) { + mNoteSettingStatusListener.onBackgroundColorChanged(); + } + mNote.setNoteValue(NoteColumns.BG_COLOR_ID, String.valueOf(id)); + } + } +// 设定检查列表模式 + public void setCheckListMode(int mode) { + if (mMode != mode) { //条件为 mMode != mode + if (mNoteSettingStatusListener != null) { + mNoteSettingStatusListener.onCheckListModeChanged(mMode, mode); + } + mMode = mode; + mNote.setTextData(TextNote.MODE, String.valueOf(mMode)); + } + } + // 设定WidgetType + public void setWidgetType(int type) { + if (type != mWidgetType) { //条件为 type != mWidgetType + mWidgetType = type; + mNote.setNoteValue(NoteColumns.WIDGET_TYPE, String.valueOf(mWidgetType));// 调用Note的setNoteValue方法更改WidgetType + } + } + // 设定WidgetId + public void setWidgetId(int id) { + if (id != mWidgetId) { + mWidgetId = id; + mNote.setNoteValue(NoteColumns.WIDGET_ID, String.valueOf(mWidgetId)); // 调用Note的setNoteValue方法更改WidgetId + } + } + // 设定WorkingText + public void setWorkingText(String text) { + if (!TextUtils.equals(mContent, text)) { //条件为 mContent, text内容不同 + mContent = text; + mNote.setTextData(DataColumns.CONTENT, mContent); // 调用Note的setTextData方法更改WorkingText + } + } + // 转变mNote的CallData及CallNote信息 + public void convertToCallNote(String phoneNumber, long callDate) { + mNote.setCallData(CallNote.CALL_DATE, String.valueOf(callDate)); + mNote.setCallData(CallNote.PHONE_NUMBER, phoneNumber); + mNote.setNoteValue(NoteColumns.PARENT_ID, String.valueOf(Notes.ID_CALL_RECORD_FOLDER)); + } + // 判断是否有时钟题型 + public boolean hasClockAlert() { + return (mAlertDate > 0 ? true : false); + } + // 获取Content + public String getContent() { + return mContent; + } + // 获取AlertDate + public long getAlertDate() { + return mAlertDate; + } + // 获取ModifiedDate + public long getModifiedDate() { + return mModifiedDate; + } + // 获取背景颜色来源id + public int getBgColorResId() { + return NoteBgResources.getNoteBgResource(mBgColorId); + } + // 获取背景颜色id + public int getBgColorId() { + return mBgColorId; + } + // 获取标题背景颜色id + public int getTitleBgResId() { + return NoteBgResources.getNoteTitleBgResource(mBgColorId); + } + // 获取CheckListMode + public int getCheckListMode() { + return mMode; + } + + // 获取便签id + public long getNoteId() { + return mNoteId; + } + // 获取文件夹id + public long getFolderId() { + return mFolderId; + } + + // 获取WidgetId + public int getWidgetId() { + return mWidgetId; + } + // 获取WidgetType + public int getWidgetType() { + return mWidgetType; + } + // 创建接口 NoteSettingChangedListener,便签更新监视 + // 为NoteEditActivity提供接口 + public interface NoteSettingChangedListener { + /** + * Called when the background color of current note has just changed + */ + void onBackgroundColorChanged(); + + /** + * Called when user set clock + */ + void onClockAlertChanged(long date, boolean set); + + /** + * Call when user create note from widget + */ + void onWidgetChanged(); + + /** + * Call when switch between check list mode and normal mode + * @param oldMode is previous mode before change + * @param newMode is new mode + */ + void onCheckListModeChanged(int oldMode, int newMode); + } +} diff --git a/other/_210340045左天祥_实践总结报告 .docx b/other/_210340045左天祥_实践总结报告 .docx new file mode 100644 index 0000000..0b66ffe Binary files /dev/null and b/other/_210340045左天祥_实践总结报告 .docx differ diff --git a/other/_210340047陈柯宇_代码标注/代码注释_陈柯宇.docx b/other/_210340047陈柯宇_代码标注/代码注释_陈柯宇.docx new file mode 100644 index 0000000..9c31582 Binary files /dev/null and b/other/_210340047陈柯宇_代码标注/代码注释_陈柯宇.docx differ diff --git a/other/_210340047陈柯宇_实践总结报告.docx b/other/_210340047陈柯宇_实践总结报告.docx new file mode 100644 index 0000000..4c464a3 Binary files /dev/null and b/other/_210340047陈柯宇_实践总结报告.docx differ diff --git a/other/_220320006杜金洲_代码标注/NoteEditActivity.java b/other/_220320006杜金洲_代码标注/NoteEditActivity.java new file mode 100644 index 0000000..537dc20 --- /dev/null +++ b/other/_220320006杜金洲_代码标注/NoteEditActivity.java @@ -0,0 +1,1047 @@ +/* + * Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package net.micode.notes.ui; + +import android.app.Activity; +import android.app.AlarmManager; +import android.app.AlertDialog; +import android.app.PendingIntent; +import android.app.SearchManager; +import android.appwidget.AppWidgetManager; +import android.content.ContentUris; +import android.content.Context; +import android.content.DialogInterface; +import android.content.Intent; +import android.content.SharedPreferences; +import android.graphics.Paint; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.text.Spannable; +import android.text.SpannableString; +import android.text.TextUtils; +import android.text.format.DateUtils; +import android.text.style.BackgroundColorSpan; +import android.util.Log; +import android.view.LayoutInflater; +import android.view.Menu; +import android.view.MenuItem; +import android.view.MotionEvent; +import android.view.View; +import android.view.View.OnClickListener; +import android.view.WindowManager; +import android.widget.CheckBox; +import android.widget.CompoundButton; +import android.widget.CompoundButton.OnCheckedChangeListener; +import android.widget.EditText; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; +import android.widget.Toast; + +import net.micode.notes.R; +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.TextNote; +import net.micode.notes.model.WorkingNote; +import net.micode.notes.model.WorkingNote.NoteSettingChangedListener; +import net.micode.notes.tool.DataUtils; +import net.micode.notes.tool.ResourceParser; +import net.micode.notes.tool.ResourceParser.TextAppearanceResources; +import net.micode.notes.ui.DateTimePickerDialog.OnDateTimeSetListener; +import net.micode.notes.ui.NoteEditText.OnTextViewChangeListener; +import net.micode.notes.widget.NoteWidgetProvider_2x; +import net.micode.notes.widget.NoteWidgetProvider_4x; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + + +public class NoteEditActivity extends Activity implements OnClickListener, +//-继承Activity类,接口3个方法(Java无多重继承) +//该类主要是针对标签的编辑 + NoteSettingChangedListener, OnTextViewChangeListener { + private class HeadViewHolder { + public TextView tvModified; + + public ImageView ivAlertIcon; + + public TextView tvAlertDate; + + public ImageView ibSetBgColor; + } +//继承了系统内部许多和监听有关的类 + + private static final Map sBgSelectorBtnsMap = new HashMap(); + //map其中一个是键的类型,第二个是值的类型,integer类型 + static { + sBgSelectorBtnsMap.put(R.id.iv_bg_yellow, ResourceParser.YELLOW); + //put() 方法将指定的键/值对插入到 Map 中。将指定值和指定键相连 + sBgSelectorBtnsMap.put(R.id.iv_bg_red, ResourceParser.RED); + sBgSelectorBtnsMap.put(R.id.iv_bg_blue, ResourceParser.BLUE); + sBgSelectorBtnsMap.put(R.id.iv_bg_green, ResourceParser.GREEN); + sBgSelectorBtnsMap.put(R.id.iv_bg_white, ResourceParser.WHITE);//资源解析器.白 + } + + private static final Map sBgSelectorSelectionMap = new HashMap(); + static { + sBgSelectorSelectionMap.put(ResourceParser.YELLOW, R.id.iv_bg_yellow_select); + sBgSelectorSelectionMap.put(ResourceParser.RED, R.id.iv_bg_red_select); + sBgSelectorSelectionMap.put(ResourceParser.BLUE, R.id.iv_bg_blue_select); + sBgSelectorSelectionMap.put(ResourceParser.GREEN, R.id.iv_bg_green_select); + sBgSelectorSelectionMap.put(ResourceParser.WHITE, R.id.iv_bg_white_select); + }//同上 ,将parser和select 相连 + + private static final Map sFontSizeBtnsMap = new HashMap(); + static { + sFontSizeBtnsMap.put(R.id.ll_font_large, ResourceParser.TEXT_LARGE); + sFontSizeBtnsMap.put(R.id.ll_font_small, ResourceParser.TEXT_SMALL); + sFontSizeBtnsMap.put(R.id.ll_font_normal, ResourceParser.TEXT_MEDIUM); + sFontSizeBtnsMap.put(R.id.ll_font_super, ResourceParser.TEXT_SUPER); + }//同上 + + private static final Map sFontSelectorSelectionMap = new HashMap(); + static { + sFontSelectorSelectionMap.put(ResourceParser.TEXT_LARGE, R.id.iv_large_select); + sFontSelectorSelectionMap.put(ResourceParser.TEXT_SMALL, R.id.iv_small_select); + sFontSelectorSelectionMap.put(ResourceParser.TEXT_MEDIUM, R.id.iv_medium_select); + sFontSelectorSelectionMap.put(ResourceParser.TEXT_SUPER, R.id.iv_super_select); + }//同上 + + private static final String TAG = "NoteEditActivity"; + + private HeadViewHolder mNoteHeaderHolder; + + private View mHeadViewPanel;//View是一个矩形区域,我们可以在这个区域上定义自己的控件。View是用来构建用户界面组件(Button,Textfields等等)的基类。 + //私有化一个界面操作mNoteBgColorSelector,对背景颜色的操作 + private View mFontSizeSelector; + //私有化一个界面操作mFontSizeSelector,对标签字体的操作 + private EditText mNoteEditor; + //声明编辑控件,对文本操作 + private View mNoteEditorPanel; + //私有化一个界面操作mNoteEditorPanel,文本编辑的控制板 + public WorkingNote mWorkingNote; + //对模板WorkingNote的初始化 + private SharedPreferences mSharedPrefs; + //私有化SharedPreferences的数据存储方式 + private int mFontSizeId; + //用于操作字体的大小 + + private static final String PREFERENCE_FONT_SIZE = "pref_font_size"; + + private static final int SHORTCUT_ICON_TITLE_MAX_LEN = 10; + + public static final String TAG_CHECKED = String.valueOf('\u221A');//一个勾 + public static final String TAG_UNCHECKED = String.valueOf('\u25A1');//空心正方形 + + private LinearLayout mEditTextList; +//线性布局,这个布局会将它所包含的控件在线性方向上依次排列。 + private String mUserQuery; + private Pattern mPattern; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + this.setContentView(R.layout.note_edit); + //对数据库的访问操作 + if (savedInstanceState == null && !initActivityState(getIntent())) { + finish(); + return; + } + initResources(); + } + + /** + * Current activity may be killed when the memory is low. Once it is killed, for another time + * user load this activity, we should restore the former state + */ + //当内存不足时,当前的活动可能被杀死。一旦它被杀死,对于另一个时间,用户加载这个活动,我们应该恢复以前的状态 + @Override + protected void onRestoreInstanceState(Bundle savedInstanceState) { + super.onRestoreInstanceState(savedInstanceState); + if (savedInstanceState != null && savedInstanceState.containsKey(Intent.EXTRA_UID)) { + Intent intent = new Intent(Intent.ACTION_VIEW); + //Intent用于组件的交互 + intent.putExtra(Intent.EXTRA_UID, savedInstanceState.getLong(Intent.EXTRA_UID)); + if (!initActivityState(intent)) { + finish(); + return; + } + Log.d(TAG, "Restoring from killed activity"); + }//为防止内存不足时程序的终止,在这里有一个保存现场的函数 + } + + private boolean initActivityState(Intent intent) { + /** + * If the user specified the {@link Intent#ACTION_VIEW} but not provided with id, + * then jump to the NotesListActivity + */ + //没有提供id, 则跳转到NotesListActivity + mWorkingNote = null; + if (TextUtils.equals(Intent.ACTION_VIEW, intent.getAction())) { + long noteId = intent.getLongExtra(Intent.EXTRA_UID, 0); + mUserQuery = ""; + + /** + * Starting from the searched result + */ + /*根据输入键值查找ID,如果没有找到,就显示错误*/ + if (intent.hasExtra(SearchManager.EXTRA_DATA_KEY)) { + noteId = Long.parseLong(intent.getStringExtra(SearchManager.EXTRA_DATA_KEY)); + mUserQuery = intent.getStringExtra(SearchManager.USER_QUERY); + } + + if (!DataUtils.visibleInNoteDatabase(getContentResolver(), noteId, Notes.TYPE_NOTE)) { + Intent jump = new Intent(this, NotesListActivity.class); + startActivity(jump); + showToast(R.string.error_note_not_exist); + finish(); + return false; + } else { + mWorkingNote = WorkingNote.load(this, noteId); + if (mWorkingNote == null) { + Log.e(TAG, "load note failed with note id" + noteId); + finish(); + return false; + } + } + getWindow().setSoftInputMode( + WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN + | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE); + //|是OR运算符,是一种位符。有1为1,全0为0 + } else if(TextUtils.equals(Intent.ACTION_INSERT_OR_EDIT, intent.getAction())) { + // intent.getAction(),通过 getAction得到的字符串,来决定做什么 + long folderId = intent.getLongExtra(Notes.INTENT_EXTRA_FOLDER_ID, 0); + int widgetId = intent.getIntExtra(Notes.INTENT_EXTRA_WIDGET_ID, + AppWidgetManager.INVALID_APPWIDGET_ID); + int widgetType = intent.getIntExtra(Notes.INTENT_EXTRA_WIDGET_TYPE, + Notes.TYPE_WIDGET_INVALIDE); + int bgResId = intent.getIntExtra(Notes.INTENT_EXTRA_BACKGROUND_ID, + ResourceParser.getDefaultBgId(this)); + + // Parse call-record note + String phoneNumber = intent.getStringExtra(Intent.EXTRA_PHONE_NUMBER); + long callDate = intent.getLongExtra(Notes.INTENT_EXTRA_CALL_DATE, 0); + if (callDate != 0 && phoneNumber != null) { + if (TextUtils.isEmpty(phoneNumber)) { + Log.w(TAG, "The call record number is null"); + } + long noteId = 0; + if ((noteId = DataUtils.getNoteIdByPhoneNumberAndCallDate(getContentResolver(), + phoneNumber, callDate)) > 0) { + mWorkingNote = WorkingNote.load(this, noteId); + if (mWorkingNote == null) { + Log.e(TAG, "load call note failed with note id" + noteId); + finish(); + return false; + } + //将电话号码与手机的号码簿相关, 当mWorkingNote == null时,加载失败,下面就创建一个新的mworkingnote + } else { + mWorkingNote = WorkingNote.createEmptyNote(this, folderId, widgetId, + widgetType, bgResId); + mWorkingNote.convertToCallNote(phoneNumber, callDate); + } + } else { + mWorkingNote = WorkingNote.createEmptyNote(this, folderId, widgetId, widgetType, + bgResId); + } + + getWindow().setSoftInputMode( + WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE + | WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE); + } else { + Log.e(TAG, "Intent not specified action, should not support"); + finish(); + return false; + } + mWorkingNote.setOnSettingStatusChangedListener(this); + return true; + } + + @Override + protected void onResume() { + super.onResume(); + initNoteScreen(); + } +//对界面的初始化操作,设置外观等 + private void initNoteScreen() { + mNoteEditor.setTextAppearance(this, TextAppearanceResources + .getTexAppearanceResource(mFontSizeId)); + if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) { + switchToListMode(mWorkingNote.getContent()); + } else { + mNoteEditor.setText(getHighlightQueryResult(mWorkingNote.getContent(), mUserQuery)); + mNoteEditor.setSelection(mNoteEditor.getText().length()); + } + for (Integer id : sBgSelectorSelectionMap.keySet()) { + findViewById(sBgSelectorSelectionMap.get(id)).setVisibility(View.GONE); + } + mHeadViewPanel.setBackgroundResource(mWorkingNote.getTitleBgResId()); + mNoteEditorPanel.setBackgroundResource(mWorkingNote.getBgColorResId()); + + mNoteHeaderHolder.tvModified.setText(DateUtils.formatDateTime(this, + mWorkingNote.getModifiedDate(), DateUtils.FORMAT_SHOW_DATE + | DateUtils.FORMAT_NUMERIC_DATE | DateUtils.FORMAT_SHOW_TIME + | DateUtils.FORMAT_SHOW_YEAR)); + + /** + * TODO: Add the menu for setting alert. Currently disable it because the DateTimePicker + * is not ready + */ + //添加设置闹钟的菜单。目前禁用它是因为DateTimePicker还没有准备好 + showAlertHeader(); + } + + private void showAlertHeader() { + if (mWorkingNote.hasClockAlert()) { + long time = System.currentTimeMillis(); + if (time > mWorkingNote.getAlertDate()) { + mNoteHeaderHolder.tvAlertDate.setText(R.string.note_alert_expired); + } + //系统时间大于闹钟时间,设置失效,基于代码健壮性考虑到 + else { + mNoteHeaderHolder.tvAlertDate.setText(DateUtils.getRelativeTimeSpanString( + mWorkingNote.getAlertDate(), time, DateUtils.MINUTE_IN_MILLIS)); + } + mNoteHeaderHolder.tvAlertDate.setVisibility(View.VISIBLE); + mNoteHeaderHolder.ivAlertIcon.setVisibility(View.VISIBLE); + } else { + mNoteHeaderHolder.tvAlertDate.setVisibility(View.GONE); + mNoteHeaderHolder.ivAlertIcon.setVisibility(View.GONE); + };//闹钟开启的图标 + } + + @Override + protected void onNewIntent(Intent intent) { + super.onNewIntent(intent); + initActivityState(intent); + } + + @Override + protected void onSaveInstanceState(Bundle outState) { + super.onSaveInstanceState(outState); + /** + * For new note without note id, we should firstly save it to + * generate a id. If the editing note is not worth saving, there + * is no id which is equivalent to create new note + */ + /*对于没有笔记ID的新笔记,我们应该首先保存它以生成一个ID。如果编辑的笔记不值得保存, + 这就相当于创建y一个没有ID新的笔记*/ + if (!mWorkingNote.existInDatabase()) { + saveNote(); + } + outState.putLong(Intent.EXTRA_UID, mWorkingNote.getNoteId()); + Log.d(TAG, "Save working note id: " + mWorkingNote.getNoteId() + " onSaveInstanceState"); + } + //在创建一个新的标签时,先在数据库中匹配 + //如果不存在,那么先在数据库中存储 + @Override + //MotionEvent是对屏幕触控的传递机制 + public boolean dispatchTouchEvent(MotionEvent ev) { + if (mNoteBgColorSelector.getVisibility() == View.VISIBLE + && !inRangeOfView(mNoteBgColorSelector, ev)) { + mNoteBgColorSelector.setVisibility(View.GONE); + return true; + }//颜色选择器在屏幕上可见 + + + if (mFontSizeSelector.getVisibility() == View.VISIBLE + && !inRangeOfView(mFontSizeSelector, ev)) { + mFontSizeSelector.setVisibility(View.GONE); + return true; + }//字体大小选择器在屏幕上可见 + return super.dispatchTouchEvent(ev); + } +//对屏幕触控的坐标进行操作 + private boolean inRangeOfView(View view, MotionEvent ev) { + int []location = new int[2]; + view.getLocationOnScreen(location); + int x = location[0]; + int y = location[1]; + if (ev.getX() < x + || ev.getX() > (x + view.getWidth()) + || ev.getY() < y + || ev.getY() > (y + view.getHeight())) { + return false; + } + return true; + } +//如果触控的位置超出了给定的范围,返回false + private void initResources() { + mHeadViewPanel = findViewById(R.id.note_title); + mNoteHeaderHolder = new HeadViewHolder(); + mNoteHeaderHolder.tvModified = (TextView) findViewById(R.id.tv_modified_date); + mNoteHeaderHolder.ivAlertIcon = (ImageView) findViewById(R.id.iv_alert_icon); + mNoteHeaderHolder.tvAlertDate = (TextView) findViewById(R.id.tv_alert_date); + mNoteHeaderHolder.ibSetBgColor = (ImageView) findViewById(R.id.btn_set_bg_color); + mNoteHeaderHolder.ibSetBgColor.setOnClickListener(this); + mNoteEditor = (EditText) findViewById(R.id.note_edit_view); + mNoteEditorPanel = findViewById(R.id.sv_note_edit); + mNoteBgColorSelector = findViewById(R.id.note_bg_color_selector); + for (int id : sBgSelectorBtnsMap.keySet()) { + ImageView iv = (ImageView) findViewById(id); + iv.setOnClickListener(this); + }//对标签各项属性内容的初始化 + + mFontSizeSelector = findViewById(R.id.font_size_selector); + for (int id : sFontSizeBtnsMap.keySet()) { + View view = findViewById(id); + view.setOnClickListener(this); + };//选择字体大小 + mSharedPrefs = PreferenceManager.getDefaultSharedPreferences(this); + mFontSizeId = mSharedPrefs.getInt(PREFERENCE_FONT_SIZE, ResourceParser.BG_DEFAULT_FONT_SIZE); + /** + * HACKME: Fix bug of store the resource id in shared preference. + * The id may larger than the length of resources, in this case, + * return the {@link ResourceParser#BG_DEFAULT_FONT_SIZE} + */ + //似乎是一个修复id过长的bug + if(mFontSizeId >= TextAppearanceResources.getResourcesSize()) { + mFontSizeId = ResourceParser.BG_DEFAULT_FONT_SIZE; + } + mEditTextList = (LinearLayout) findViewById(R.id.note_edit_list); + } + + @Override + protected void onPause() { + super.onPause(); + if(saveNote()) { + Log.d(TAG, "Note data was saved with length:" + mWorkingNote.getContent().length()); + } + clearSettingState(); + } + //和桌面小工具的同步 + + private void updateWidget() { + Intent intent = new Intent(AppWidgetManager.ACTION_APPWIDGET_UPDATE); + if (mWorkingNote.getWidgetType() == Notes.TYPE_WIDGET_2X) { + intent.setClass(this, NoteWidgetProvider_2x.class); + } else if (mWorkingNote.getWidgetType() == Notes.TYPE_WIDGET_4X) { + intent.setClass(this, NoteWidgetProvider_4x.class); + } else { + Log.e(TAG, "Unspported widget type"); + return; + } + + intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, new int[] { + mWorkingNote.getWidgetId() + }); + + sendBroadcast(intent); + setResult(RESULT_OK, intent); + } + + public void onClick(View v) { + int id = v.getId(); + if (id == R.id.btn_set_bg_color) { + mNoteBgColorSelector.setVisibility(View.VISIBLE); + findViewById(sBgSelectorSelectionMap.get(mWorkingNote.getBgColorId())).setVisibility( + - View.VISIBLE); + } else if (sBgSelectorBtnsMap.containsKey(id)) { + findViewById(sBgSelectorSelectionMap.get(mWorkingNote.getBgColorId())).setVisibility( + View.GONE); + mWorkingNote.setBgColorId(sBgSelectorBtnsMap.get(id)); + mNoteBgColorSelector.setVisibility(View.GONE); + } else if (sFontSizeBtnsMap.containsKey(id)) { + findViewById(sFontSelectorSelectionMap.get(mFontSizeId)).setVisibility(View.GONE); + mFontSizeId = sFontSizeBtnsMap.get(id); + mSharedPrefs.edit().putInt(PREFERENCE_FONT_SIZE, mFontSizeId).commit(); + findViewById(sFontSelectorSelectionMap.get(mFontSizeId)).setVisibility(View.VISIBLE); + if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) { + getWorkingText(); + switchToListMode(mWorkingNote.getContent()); + } else { + mNoteEditor.setTextAppearance(this, + TextAppearanceResources.getTexAppearanceResource(mFontSizeId)); + } + mFontSizeSelector.setVisibility(View.GONE); + } + } + + @Override + public void onBackPressed() { + if(clearSettingState()) { + return; + } + + saveNote(); + super.onBackPressed(); + } + + private boolean clearSettingState() { + if (mNoteBgColorSelector.getVisibility() == View.VISIBLE) { + mNoteBgColorSelector.setVisibility(View.GONE); + return true; + } else if (mFontSizeSelector.getVisibility() == View.VISIBLE) { + mFontSizeSelector.setVisibility(View.GONE); + return true; + }//清除设置状态,颜色、大小的设置 + return false; + } + + //对选择菜单的准备 + public void onBackgroundColorChanged() { + findViewById(sBgSelectorSelectionMap.get(mWorkingNote.getBgColorId())).setVisibility( + View.VISIBLE); + mNoteEditorPanel.setBackgroundResource(mWorkingNote.getBgColorResId()); + mHeadViewPanel.setBackgroundResource(mWorkingNote.getTitleBgResId()); + } + + @Override + public boolean onPrepareOptionsMenu(Menu menu) { + if (isFinishing()) { + return true; + } + clearSettingState(); + menu.clear(); + if (mWorkingNote.getFolderId() == Notes.ID_CALL_RECORD_FOLDER) { + getMenuInflater().inflate(R.menu.call_note_edit, menu); + // MenuInflater是用来实例化Menu目录下的Menu布局文件的 + + } else { + getMenuInflater().inflate(R.menu.note_edit, menu); + } + if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) { + menu.findItem(R.id.menu_list_mode).setTitle(R.string.menu_normal_mode); + } else { + menu.findItem(R.id.menu_list_mode).setTitle(R.string.menu_list_mode); + } + if (mWorkingNote.hasClockAlert()) { + menu.findItem(R.id.menu_alert).setVisible(false); + } else { + menu.findItem(R.id.menu_delete_remind).setVisible(false); + } + return true; + } + + @Override + //函数功能:动态改变菜单选项内容 + public boolean onOptionsItemSelected(MenuItem item) { + switch (item.getItemId()) { + //根据菜单的id来编辑相关项目 + case R.id.menu_new_note: + createNewNote(); + break; + case R.id.menu_delete: + //创建和删除便签 + AlertDialog.Builder builder = new AlertDialog.Builder(this); + //创建关于删除操作的对话框 + builder.setTitle(getString(R.string.alert_title_delete)); + // 设置标签的标题为alert_title_delet + builder.setIcon(android.R.drawable.ic_dialog_alert); + //设置对话框图标 + builder.setMessage(getString(R.string.alert_message_delete_note)); + //设置对话框内容 + builder.setPositiveButton(android.R.string.ok, + new DialogInterface.OnClickListener() { + //建立按键监听器 + public void onClick(DialogInterface dialog, int which) { + //点击所触发事件 + deleteCurrentNote(); + // 删除单签便签 + finish(); + } + }); + builder.setNegativeButton(android.R.string.cancel, null);//添加yes和no的按钮 + builder.show(); //显示对话框 + break; + case R.id.menu_font_size: //字体大小的编辑 + mFontSizeSelector.setVisibility(View.VISIBLE);// 将字体选择器置为可见 + findViewById(sFontSelectorSelectionMap.get(mFontSizeId)).setVisibility(View.VISIBLE); + break; // 通过id找到相应的大小 + case R.id.menu_list_mode://选择列表模式 + mWorkingNote.setCheckListMode(mWorkingNote.getCheckListMode() == 0 ? + TextNote.MODE_CHECK_LIST : 0); + break;//菜单共享 + case R.id.menu_share: + getWorkingText(); + sendTo(this, mWorkingNote.getContent()); + // 用sendto函数将运行文本发送到遍历的本文内 + break; + case R.id.menu_send_to_desktop: + sendToDesktop();//发送到桌面 + break; + case R.id.menu_alert: + setReminder();//创建提醒器 + break; + case R.id.menu_delete_remind: + mWorkingNote.setAlertDate(0, false);//删除日期提醒 + break; + default: + break; + } + return true; + } +//函数功能:建立事件提醒器 + private void setReminder() { + DateTimePickerDialog d = new DateTimePickerDialog(this, System.currentTimeMillis()); + // 建立修改时间日期的对话框 + d.setOnDateTimeSetListener(new OnDateTimeSetListener() { + public void OnDateTimeSet(AlertDialog dialog, long date) { + mWorkingNote.setAlertDate(date , true); + } + }); //建立时间日期的监听器 + d.show();//显示对话框 + } + + /** + * Share note to apps that support {@link Intent#ACTION_SEND} action + * and {@text/plain} type + */ + //函数功能:共享便签 + private void sendTo(Context context, String info) { + //建立intent链接选项 + Intent intent = new Intent(Intent.ACTION_SEND); + //将需要传递的便签信息放入text文件中 + intent.putExtra(Intent.EXTRA_TEXT, info); + //编辑连接器的类型 + intent.setType("text/plain"); + //在acti中进行链接 + context.startActivity(intent); + } +//函数功能:创建一个新的便签 + private void createNewNote() { + // Firstly, save current editing notes + //保存当前便签 + saveNote(); + + // For safety, start a new NoteEditActivity + finish(); + Intent intent = new Intent(this, NoteEditActivity.class); + //设置链接器 + intent.setAction(Intent.ACTION_INSERT_OR_EDIT); + //该活动定义为创建或编辑 + intent.putExtra(Notes.INTENT_EXTRA_FOLDER_ID, mWorkingNote.getFolderId()); + //将运行便签的id添加到INTENT_EXTRA_FOLDER_ID标记中 + startActivity(intent); + //开始activity并链接 + } + + /* + * 函数功能:删除当前便签 + * 函数实现:如下注释 + */ + private void deleteCurrentNote() { + if (mWorkingNote.existInDatabase()) { + //假如当前运行的便签内存有数据 + HashSet ids = new HashSet(); + long id = mWorkingNote.getNoteId(); + if (id != Notes.ID_ROOT_FOLDER) { + ids.add(id); + //如果不是头文件夹建立一个hash表把便签id存起来 + } else { + Log.d(TAG, "Wrong note id, should not happen"); + //否则报错 + } + if (!isSyncMode()) { + //在非同步模式情况下 + //删除操作 + if (!DataUtils.batchDeleteNotes(getContentResolver(), ids)) { + Log.e(TAG, "Delete Note error"); + } + } else { + //同步模式 + //移动至垃圾文件夹的操作 + if (!DataUtils.batchMoveToFolder(getContentResolver(), ids, Notes.ID_TRASH_FOLER)) { + Log.e(TAG, "Move notes to trash folder error, should not happens"); + } + } + } + mWorkingNote.markDeleted(true); + //将这些标签的删除标记置为true + } + + /* + * 函数功能:判断是否为同步模式 + * 函数实现:直接看NotesPreferenceActivity中同步名称是否为空 + */ + private boolean isSyncMode() { + return NotesPreferenceActivity.getSyncAccountName(this).trim().length() > 0; + } + + /* + * 函数功能:设置提醒时间 + * 函数实现:如下注释 + */ + public void onClockAlertChanged(long date, boolean set) { + /** + * User could set clock to an unsaved note, so before setting the + * alert clock, we should save the note first + */ + if (!mWorkingNote.existInDatabase()) { + //首先保存已有的便签 + saveNote(); + } + if (mWorkingNote.getNoteId() > 0) { + Intent intent = new Intent(this, AlarmReceiver.class); + intent.setData(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, mWorkingNote.getNoteId())); + //若有有运行的便签就是建立一个链接器将标签id都存在uri中 + PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intent, 0); + AlarmManager alarmManager = ((AlarmManager) getSystemService(ALARM_SERVICE)); + //设置提醒管理器 + showAlertHeader(); + if(!set) { + alarmManager.cancel(pendingIntent); + } else { + alarmManager.set(AlarmManager.RTC_WAKEUP, date, pendingIntent); + } + //如果用户设置了时间,就通过提醒管理器设置一个监听事项 + } else { + /** + * There is the condition that user has input nothing (the note is + * not worthy saving), we have no note id, remind the user that he + * should input something + */ + //没有运行的便签就报错 + Log.e(TAG, "Clock alert setting error"); + showToast(R.string.error_note_empty_for_clock); + } + } + + /* + * 函数功能:Widget发生改变的所触发的事件 + */ + public void onWidgetChanged() { + updateWidget();//更新Widget + } + + /* + * 函数功能: 删除编辑文本框所触发的事件 + * 函数实现:如下注释 + */ + public void onEditTextDelete(int index, String text) { + int childCount = mEditTextList.getChildCount(); + if (childCount == 1) { + return; + } + //没有编辑框的话直接返回 + for (int i = index + 1; i < childCount; i++) { + ((NoteEditText) mEditTextList.getChildAt(i).findViewById(R.id.et_edit_text)) + .setIndex(i - 1); + //通过id把编辑框存在便签编辑框中 + } + + mEditTextList.removeViewAt(index); + //删除特定位置的视图 + NoteEditText edit = null; + if(index == 0) { + edit = (NoteEditText) mEditTextList.getChildAt(0).findViewById( + R.id.et_edit_text); + } else { + edit = (NoteEditText) mEditTextList.getChildAt(index - 1).findViewById( + R.id.et_edit_text); + } + //通过id把编辑框存在空的NoteEditText中 + int length = edit.length(); + edit.append(text); + edit.requestFocus();//请求优先完成该此 编辑 + edit.setSelection(length);//定位到length位置处的条目 + } + + /* + * 函数功能:进入编辑文本框所触发的事件 + * 函数实现:如下注释 + */ + public void onEditTextEnter(int index, String text) { + /** + * Should not happen, check for debug + */ + if(index > mEditTextList.getChildCount()) { + Log.e(TAG, "Index out of mEditTextList boundrary, should not happen"); + //越界把偶偶 + } + + View view = getListItem(text, index); + mEditTextList.addView(view, index); + //建立一个新的视图并添加到编辑文本框内 + NoteEditText edit = (NoteEditText) view.findViewById(R.id.et_edit_text); + edit.requestFocus();//请求优先操作 + edit.setSelection(0);//定位到起始位置 + for (int i = index + 1; i < mEditTextList.getChildCount(); i++) { + ((NoteEditText) mEditTextList.getChildAt(i).findViewById(R.id.et_edit_text)) + .setIndex(i); + //遍历子文本框并设置对应对下标 + } + } + + /* + * 函数功能:切换至列表模式 + * 函数实现:如下注释 + */ + private void switchToListMode(String text) { + mEditTextList.removeAllViews(); + String[] items = text.split("\n"); + int index = 0; + //清空所有视图,初始化下标 + for (String item : items) { + if(!TextUtils.isEmpty(item)) { + mEditTextList.addView(getListItem(item, index)); + index++; + //遍历所有文本单元并添加到文本框中 + } + } + mEditTextList.addView(getListItem("", index)); + mEditTextList.getChildAt(index).findViewById(R.id.et_edit_text).requestFocus(); + //优先请求此操作 + + mNoteEditor.setVisibility(View.GONE); + //便签编辑器不可见 + mEditTextList.setVisibility(View.VISIBLE); + //将文本编辑框置为可见 + } + + /* + * 函数功能:获取高亮效果的反馈情况 + * 函数实现:如下注释 + */ + private Spannable getHighlightQueryResult(String fullText, String userQuery) { + SpannableString spannable = new SpannableString(fullText == null ? "" : fullText); + //新建一个效果选项 + if (!TextUtils.isEmpty(userQuery)) { + mPattern = Pattern.compile(userQuery); + //将用户的询问进行解析 + Matcher m = mPattern.matcher(fullText); + //建立一个状态机检查Pattern并进行匹配 + int start = 0; + while (m.find(start)) { + spannable.setSpan( + new BackgroundColorSpan(this.getResources().getColor( + R.color.user_query_highlight)), m.start(), m.end(), + Spannable.SPAN_INCLUSIVE_EXCLUSIVE); + //设置背景颜色 + start = m.end(); + //跟新起始位置 + } + } + return spannable; + } + + /* + * 函数功能:获取列表项 + * 函数实现:如下注释 + */ + private View getListItem(String item, int index) { + View view = LayoutInflater.from(this).inflate(R.layout.note_edit_list_item, null); + //创建一个视图 + final NoteEditText edit = (NoteEditText) view.findViewById(R.id.et_edit_text); + edit.setTextAppearance(this, TextAppearanceResources.getTexAppearanceResource(mFontSizeId)); + //创建一个文本编辑框并设置可见性 + CheckBox cb = ((CheckBox) view.findViewById(R.id.cb_edit_item)); + cb.setOnCheckedChangeListener(new OnCheckedChangeListener() { + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + if (isChecked) { + edit.setPaintFlags(edit.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG); + } else { + edit.setPaintFlags(Paint.ANTI_ALIAS_FLAG | Paint.DEV_KERN_TEXT_FLAG); + } + } + }); + //建立一个打钩框并设置监听器 + + if (item.startsWith(TAG_CHECKED)) { + //选择勾选 + cb.setChecked(true); + edit.setPaintFlags(edit.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG); + item = item.substring(TAG_CHECKED.length(), item.length()).trim(); + } else if (item.startsWith(TAG_UNCHECKED)) { + //选择不勾选 + cb.setChecked(false); + edit.setPaintFlags(Paint.ANTI_ALIAS_FLAG | Paint.DEV_KERN_TEXT_FLAG); + item = item.substring(TAG_UNCHECKED.length(), item.length()).trim(); + } + + edit.setOnTextViewChangeListener(this); + edit.setIndex(index); + edit.setText(getHighlightQueryResult(item, mUserQuery)); + //运行编辑框的监听器对该行为作出反应,并设置下标及文本内容 + return view; + } + + /* + * 函数功能:便签内容发生改变所 触发的事件 + * 函数实现:如下注释 + */ + public void onTextChange(int index, boolean hasText) { + if (index >= mEditTextList.getChildCount()) { + Log.e(TAG, "Wrong index, should not happen"); + return; + //越界报错 + } + if(hasText) { + mEditTextList.getChildAt(index).findViewById(R.id.cb_edit_item).setVisibility(View.VISIBLE); + } else { + mEditTextList.getChildAt(index).findViewById(R.id.cb_edit_item).setVisibility(View.GONE); + } + //如果内容不为空则将其子编辑框可见性置为可见,否则不可见 + } + + /* + * 函数功能:检查模式和列表模式的切换 + * 函数实现:如下注释 + */ + public void onCheckListModeChanged(int oldMode, int newMode) { + if (newMode == TextNote.MODE_CHECK_LIST) { + switchToListMode(mNoteEditor.getText().toString()); + //检查模式切换到列表模式 + } else { + if (!getWorkingText()) { + mWorkingNote.setWorkingText(mWorkingNote.getContent().replace(TAG_UNCHECKED + " ", + "")); + } + //若是获取到文本就改变其检查标记 + mNoteEditor.setText(getHighlightQueryResult(mWorkingNote.getContent(), mUserQuery)); + mEditTextList.setVisibility(View.GONE); + mNoteEditor.setVisibility(View.VISIBLE); + //修改文本编辑器的内容和可见性 + } + } + + /* + * 函数功能:设置勾选选项表并返回是否勾选的标记 + * 函数实现:如下注释 + */ + private boolean getWorkingText() { + boolean hasChecked = false; + //初始化check标记 + if (mWorkingNote.getCheckListMode() == TextNote.MODE_CHECK_LIST) { + // 若模式为CHECK_LIST + StringBuilder sb = new StringBuilder(); + //创建可变字符串 + for (int i = 0; i < mEditTextList.getChildCount(); i++) { + View view = mEditTextList.getChildAt(i); + //遍历所有子编辑框的视图 + NoteEditText edit = (NoteEditText) view.findViewById(R.id.et_edit_text); + if (!TextUtils.isEmpty(edit.getText())) { + //若文本不为空 + if (((CheckBox) view.findViewById(R.id.cb_edit_item)).isChecked()) { + //该选项框已打钩 + sb.append(TAG_CHECKED).append(" ").append(edit.getText()).append("\n"); + hasChecked = true; + //扩展字符串为已打钩并把标记置true + } else { + sb.append(TAG_UNCHECKED).append(" ").append(edit.getText()).append("\n"); + //扩展字符串添加未打钩 + } + } + } + mWorkingNote.setWorkingText(sb.toString()); + //利用编辑好的字符串设置运行便签的内容 + } else { + mWorkingNote.setWorkingText(mNoteEditor.getText().toString()); + // 若不是该模式直接用编辑器中的内容设置运行中标签的内容 + } + return hasChecked; + } + + /* + * 函数功能:保存便签 + * 函数实现:如下注释 + */ + private boolean saveNote() { + getWorkingText(); + boolean saved = mWorkingNote.saveNote(); + //运行 getWorkingText()之后保存 + if (saved) { + /** + * There are two modes from List view to edit view, open one note, + * create/edit a node. Opening node requires to the original + * position in the list when back from edit view, while creating a + * new node requires to the top of the list. This code + * {@link #RESULT_OK} is used to identify the create/edit state + */ + //如英文注释所说链接RESULT_OK是为了识别保存的2种情况,一是创建后保存,二是修改后保存 + setResult(RESULT_OK); + } + return saved; + } + + /* + * 函数功能:将便签发送至桌面 + * 函数实现:如下注释 + */ + private void sendToDesktop() { + /** + * Before send message to home, we should make sure that current + * editing note is exists in databases. So, for new note, firstly + * save it + */ + if (!mWorkingNote.existInDatabase()) { + saveNote(); + //若不存在数据也就是新的标签就保存起来先 + } + + if (mWorkingNote.getNoteId() > 0) { + //若是有内容 + Intent sender = new Intent(); + Intent shortcutIntent = new Intent(this, NoteEditActivity.class); + //建立发送到桌面的连接器 + shortcutIntent.setAction(Intent.ACTION_VIEW); + //链接为一个视图 + shortcutIntent.putExtra(Intent.EXTRA_UID, mWorkingNote.getNoteId()); + sender.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); + sender.putExtra(Intent.EXTRA_SHORTCUT_NAME, + makeShortcutIconTitle(mWorkingNote.getContent())); + sender.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, + Intent.ShortcutIconResource.fromContext(this, R.drawable.icon_app)); + sender.putExtra("duplicate", true); + //将便签的相关信息都添加到要发送的文件里 + sender.setAction("com.android.launcher.action.INSTALL_SHORTCUT"); + //设置sneder的行为是发送 + showToast(R.string.info_note_enter_desktop); + sendBroadcast(sender); + //显示到桌面 + } else { + /** + * There is the condition that user has input nothing (the note is + * not worthy saving), we have no note id, remind the user that he + * should input something + */ + Log.e(TAG, "Send to desktop error"); + showToast(R.string.error_note_empty_for_send_to_desktop); + //空便签直接报错 + } + } + + /* + * 函数功能:编辑小图标的标题 + * 函数实现:如下注释 + */ + private String makeShortcutIconTitle(String content) { + content = content.replace(TAG_CHECKED, ""); + content = content.replace(TAG_UNCHECKED, ""); + return content.length() > SHORTCUT_ICON_TITLE_MAX_LEN ? content.substring(0, + SHORTCUT_ICON_TITLE_MAX_LEN) : content; + //直接设置为content中的内容并返回,有勾选和未勾选2种 + } + + /* + * 函数功能:显示提示的视图 + * 函数实现:根据下标显示对应的提示 + */ + private void showToast(int resId) { + showToast(resId, Toast.LENGTH_SHORT); + } + + /* + * 函数功能:持续显示提示的视图 + * 函数实现:根据下标和持续的时间(duration)编辑提示视图并显示 + */ + private void showToast(int resId, int duration) { + Toast.makeText(this, resId, duration).show(); + } +} diff --git a/other/_220320006杜金洲_代码标注/NotesListItem.java b/other/_220320006杜金洲_代码标注/NotesListItem.java new file mode 100644 index 0000000..08a8017 --- /dev/null +++ b/other/_220320006杜金洲_代码标注/NotesListItem.java @@ -0,0 +1,116 @@ +package net.micode.notes.ui; + +import android.content.Context; +import android.text.format.DateUtils; +import android.view.View; +import android.widget.CheckBox; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; + +import net.micode.notes.R; +import net.micode.notes.data.Notes; +import net.micode.notes.tool.DataUtils; +import net.micode.notes.tool.ResourceParser.NoteItemBgResources; + + +//创建便签列表项目选项 +public class NotesListItem extends LinearLayout { + private ImageView mAlert;//闹钟图片 + private TextView mTitle; //标题 + private TextView mTime; //时间 + private TextView mCallName; // + private NoteItemData mItemData; //标签数据 + private CheckBox mCheckBox; //打钩框 + + /*初始化基本信息*/ + public NotesListItem(Context context) { + super(context); //super()它的主要作用是调整调用父类构造函数的顺序 + inflate(context, R.layout.note_item, this);//Inflate可用于将一个xml中定义的布局控件找出来,这里的xml是r。layout + //findViewById用于从contentView中查找指定ID的View,转换出来的形式根据需要而定; + mAlert = (ImageView) findViewById(R.id.iv_alert_icon); + mTitle = (TextView) findViewById(R.id.tv_title); + mTime = (TextView) findViewById(R.id.tv_time); + mCallName = (TextView) findViewById(R.id.tv_name); + mCheckBox = (CheckBox) findViewById(android.R.id.checkbox); + } + ///根据data的属性对各个控件的属性的控制,主要是可见性Visibility,内容setText,格式setTextAppearance + public void bind(Context context, NoteItemData data, boolean choiceMode, boolean checked) { + if (choiceMode && data.getType() == Notes.TYPE_NOTE) { + mCheckBox.setVisibility(View.VISIBLE); ///设置可见行为可见 + mCheckBox.setChecked(checked); ///格子打钩 + } else { + mCheckBox.setVisibility(View.GONE); + } + + mItemData = data; + ///设置控件属性,一共三种情况,由data的id和父id是否与保存到文件夹的id一致来决定 + if (data.getId() == Notes.ID_CALL_RECORD_FOLDER) { + mCallName.setVisibility(View.GONE); + mAlert.setVisibility(View.VISIBLE); + //设置该textview的style + mTitle.setTextAppearance(context, R.style.TextAppearancePrimaryItem); + //settext为设置内容 + mTitle.setText(context.getString(R.string.call_record_folder_name) + + context.getString(R.string.format_folder_files_count, data.getNotesCount())); + mAlert.setImageResource(R.drawable.call_record); + } else if (data.getParentId() == Notes.ID_CALL_RECORD_FOLDER) { + mCallName.setVisibility(View.VISIBLE); + mCallName.setText(data.getCallName()); + mTitle.setTextAppearance(context,R.style.TextAppearanceSecondaryItem); + mTitle.setText(DataUtils.getFormattedSnippet(data.getSnippet())); + ///关于闹钟的设置 + if (data.hasAlert()) { + mAlert.setImageResource(R.drawable.clock);//图片来源的设置 + mAlert.setVisibility(View.VISIBLE); + } else { + mAlert.setVisibility(View.GONE); + } + } else { + mCallName.setVisibility(View.GONE); + mTitle.setTextAppearance(context, R.style.TextAppearancePrimaryItem); + ///设置title格式 + if (data.getType() == Notes.TYPE_FOLDER) { + mTitle.setText(data.getSnippet() + + context.getString(R.string.format_folder_files_count, + data.getNotesCount())); + mAlert.setVisibility(View.GONE); + } else { + mTitle.setText(DataUtils.getFormattedSnippet(data.getSnippet())); + if (data.hasAlert()) { + mAlert.setImageResource(R.drawable.clock);///设置图片来源 + mAlert.setVisibility(View.VISIBLE); + } else { + mAlert.setVisibility(View.GONE); + } + } + } + ///设置内容,获取相关时间,从data里编辑的日期中获取 + mTime. setText(DateUtils.getRelativeTimeSpanString(data.getModifiedDate())); + + setBackground(data); + } + //根据data的文件属性来设置背景 + private void setBackground(NoteItemData data) { + int id = data.getBgColorId(); + //,若是note型文件,则4种情况,对于4种不同情况的背景来源 + if (data.getType() == Notes.TYPE_NOTE) { + //单个数据并且只有一个子文件夹 + if (data.isSingle() || data.isOneFollowingFolder()) { + setBackgroundResource(NoteItemBgResources.getNoteBgSingleRes(id)); + } else if (data.isLast()) {//是最后一个数据 + setBackgroundResource(NoteItemBgResources.getNoteBgLastRes(id)); + } else if (data.isFirst() || data.isMultiFollowingFolder()) {//是一个数据并有多个子文件夹 + setBackgroundResource(NoteItemBgResources.getNoteBgFirstRes(id)); + } else { + setBackgroundResource(NoteItemBgResources.getNoteBgNormalRes(id)); + } + } else { + //若不是note直接调用文件夹的背景来源 + setBackgroundResource(NoteItemBgResources.getFolderBgRes()); + } + } + public NoteItemData getItemData() { + return mItemData; + } +} \ No newline at end of file diff --git a/other/_220320007刘翱翔_代码标注/AlarmAlertActivity.java b/other/_220320007刘翱翔_代码标注/AlarmAlertActivity.java new file mode 100644 index 0000000..b0d38e8 --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/AlarmAlertActivity.java @@ -0,0 +1,61 @@ +### AlarmInitReceiver.java + +```java +package net.micode.notes.ui; + +import android.app.AlarmManager; +import android.app.PendingIntent; +import android.content.BroadcastReceiver; +import android.content.ContentUris; +import android.content.Context; +import android.content.Intent; +import android.database.Cursor; + +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.NoteColumns; + + +public class AlarmInitReceiver extends BroadcastReceiver { + + private static final String [] PROJECTION = new String [] { + NoteColumns.ID, + NoteColumns.ALERTED_DATE + }; + //对数据库的操作,调用标签ID和闹钟时间 + private static final int COLUMN_ID = 0; + private static final int COLUMN_ALERTED_DATE = 1; + + @Override + public void onReceive(Context context, Intent intent) { + long currentDate = System.currentTimeMillis(); + //System.currentTimeMillis()产生一个当前的时间,以毫秒为单位 + //这个毫秒其实就是自1970年1月1日0时起的毫秒数 + Cursor c = context.getContentResolver().query(Notes.CONTENT_NOTE_URI, + PROJECTION, + NoteColumns.ALERTED_DATE + ">? AND " + NoteColumns.TYPE + "=" + Notes.TYPE_NOTE, + new String[] { String.valueOf(currentDate) }, + //将long变量currentDate转化为字符串 + null); + //Cursor在这里的作用是通过查找数据库中的标签内容,找到和当前系统时间相等的标签 + + if (c != null) { + if (c.moveToFirst()) { + do { + long alertDate = c.getLong(COLUMN_ALERTED_DATE); + Intent sender = new Intent(context, AlarmReceiver.class); + sender.setData(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, c.getLong(COLUMN_ID))); + PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, sender, 0); + AlarmManager alermManager = (AlarmManager) context + .getSystemService(Context.ALARM_SERVICE); + alermManager.set(AlarmManager.RTC_WAKEUP, alertDate, pendingIntent); + } while (c.moveToNext()); + } + c.close(); + } + //闹钟机制的启动,通常需要几个步骤 + //新建Intent、PendingIntent以及AlarmManager等 + //这里就是根据数据库里的闹钟时间创建一个闹钟机制 + } +} +``` + diff --git a/other/_220320007刘翱翔_代码标注/AlarmInitReceiver.java b/other/_220320007刘翱翔_代码标注/AlarmInitReceiver.java new file mode 100644 index 0000000..b0d38e8 --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/AlarmInitReceiver.java @@ -0,0 +1,61 @@ +### AlarmInitReceiver.java + +```java +package net.micode.notes.ui; + +import android.app.AlarmManager; +import android.app.PendingIntent; +import android.content.BroadcastReceiver; +import android.content.ContentUris; +import android.content.Context; +import android.content.Intent; +import android.database.Cursor; + +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.NoteColumns; + + +public class AlarmInitReceiver extends BroadcastReceiver { + + private static final String [] PROJECTION = new String [] { + NoteColumns.ID, + NoteColumns.ALERTED_DATE + }; + //对数据库的操作,调用标签ID和闹钟时间 + private static final int COLUMN_ID = 0; + private static final int COLUMN_ALERTED_DATE = 1; + + @Override + public void onReceive(Context context, Intent intent) { + long currentDate = System.currentTimeMillis(); + //System.currentTimeMillis()产生一个当前的时间,以毫秒为单位 + //这个毫秒其实就是自1970年1月1日0时起的毫秒数 + Cursor c = context.getContentResolver().query(Notes.CONTENT_NOTE_URI, + PROJECTION, + NoteColumns.ALERTED_DATE + ">? AND " + NoteColumns.TYPE + "=" + Notes.TYPE_NOTE, + new String[] { String.valueOf(currentDate) }, + //将long变量currentDate转化为字符串 + null); + //Cursor在这里的作用是通过查找数据库中的标签内容,找到和当前系统时间相等的标签 + + if (c != null) { + if (c.moveToFirst()) { + do { + long alertDate = c.getLong(COLUMN_ALERTED_DATE); + Intent sender = new Intent(context, AlarmReceiver.class); + sender.setData(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, c.getLong(COLUMN_ID))); + PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, sender, 0); + AlarmManager alermManager = (AlarmManager) context + .getSystemService(Context.ALARM_SERVICE); + alermManager.set(AlarmManager.RTC_WAKEUP, alertDate, pendingIntent); + } while (c.moveToNext()); + } + c.close(); + } + //闹钟机制的启动,通常需要几个步骤 + //新建Intent、PendingIntent以及AlarmManager等 + //这里就是根据数据库里的闹钟时间创建一个闹钟机制 + } +} +``` + diff --git a/other/_220320007刘翱翔_代码标注/AlarmReceiver.java b/other/_220320007刘翱翔_代码标注/AlarmReceiver.java new file mode 100644 index 0000000..38c120c --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/AlarmReceiver.java @@ -0,0 +1,24 @@ +### AlarmReceiver.java + +```java +package net.micode.notes.ui; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; + +public class AlarmReceiver extends BroadcastReceiver { + @Override + public void onReceive(Context context, Intent intent) { + intent.setClass(context, AlarmAlertActivity.class); + //启动AlarmAlertActivity + intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + //activity要存在于activity的栈中 + //所以要新起一个栈装入启动的activity + context.startActivity(intent); + } +} +//这是实现alarm这个功能最接近用户层的包,基于上面的两个包 + +``` + diff --git a/other/_220320007刘翱翔_代码标注/DateTimePicker.java b/other/_220320007刘翱翔_代码标注/DateTimePicker.java new file mode 100644 index 0000000..536c6ac --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/DateTimePicker.java @@ -0,0 +1,438 @@ +### DateTimePicker.java + +```java +package net.micode.notes.ui; + +import java.text.DateFormatSymbols; +import java.util.Calendar; + +import net.micode.notes.R; + + +import android.content.Context; +import android.text.format.DateFormat; +import android.view.View; +import android.widget.FrameLayout; +import android.widget.NumberPicker; + +public class DateTimePicker extends FrameLayout { + //FrameLayout是布局模板之一 + //所有的子元素全部在屏幕的右上方 + private static final boolean DEFAULT_ENABLE_STATE = true; + + private static final int HOURS_IN_HALF_DAY = 12; + private static final int HOURS_IN_ALL_DAY = 24; + private static final int DAYS_IN_ALL_WEEK = 7; + private static final int DATE_SPINNER_MIN_VAL = 0; + private static final int DATE_SPINNER_MAX_VAL = DAYS_IN_ALL_WEEK - 1; + private static final int HOUR_SPINNER_MIN_VAL_24_HOUR_VIEW = 0; + private static final int HOUR_SPINNER_MAX_VAL_24_HOUR_VIEW = 23; + private static final int HOUR_SPINNER_MIN_VAL_12_HOUR_VIEW = 1; + private static final int HOUR_SPINNER_MAX_VAL_12_HOUR_VIEW = 12; + private static final int MINUT_SPINNER_MIN_VAL = 0; + private static final int MINUT_SPINNER_MAX_VAL = 59; + private static final int AMPM_SPINNER_MIN_VAL = 0; + private static final int AMPM_SPINNER_MAX_VAL = 1; + //初始化控制模块 + private final NumberPicker mDateSpinner; + private final NumberPicker mHourSpinner; + private final NumberPicker mMinuteSpinner; + private final NumberPicker mAmPmSpinner; + //NumberPicker是数字选择器 + //这里定义的四个变量全部是在设置闹钟时需要选择的变量(如日期、时、分、上午或者下午) + private Calendar mDate; + //定义了Calendar类型的变量mDate,用于对时间操作 + private String[] mDateDisplayValues = new String[DAYS_IN_ALL_WEEK]; + + private boolean mIsAm; + + private boolean mIs24HourView; + + private boolean mIsEnabled = DEFAULT_ENABLE_STATE; + + private boolean mInitialising; + + private OnDateTimeChangedListener mOnDateTimeChangedListener; + + private NumberPicker.OnValueChangeListener mOnDateChangedListener = new NumberPicker.OnValueChangeListener() { + @Override + public void onValueChange(NumberPicker picker, int oldVal, int newVal) { + mDate.add(Calendar.DAY_OF_YEAR, newVal - oldVal); + updateDateControl(); + onDateTimeChanged(); + } + }; + //OnValueChangeListener,时间改变监听器,这里主要是对日期的监听 + //将现在日期的值传递给mDate;updateDateControl是同步操作 + + private NumberPicker.OnValueChangeListener mOnHourChangedListener = new NumberPicker.OnValueChangeListener() { + //这里是对小时Hour的监听 + @Override + public void onValueChange(NumberPicker picker, int oldVal, int newVal) { + boolean isDateChanged = false; + Calendar cal = Calendar.getInstance(); + //声明一个Calendar的变量cal + if (!mIs24HourView) { + if (!mIsAm && oldVal == HOURS_IN_HALF_DAY - 1 && newVal == HOURS_IN_HALF_DAY) { + cal.setTimeInMillis(mDate.getTimeInMillis()); + cal.add(Calendar.DAY_OF_YEAR, 1); + isDateChanged = true; + //对于12小时制时,晚上11点和12点交替时对日期的更改 + } else if (mIsAm && oldVal == HOURS_IN_HALF_DAY && newVal == HOURS_IN_HALF_DAY - 1) { + cal.setTimeInMillis(mDate.getTimeInMillis()); + cal.add(Calendar.DAY_OF_YEAR, -1); + isDateChanged = true; + } + //对于12小时制时,凌晨11点和12点交替时对日期的更改 + if (oldVal == HOURS_IN_HALF_DAY - 1 && newVal == HOURS_IN_HALF_DAY || + oldVal == HOURS_IN_HALF_DAY && newVal == HOURS_IN_HALF_DAY - 1) { + mIsAm = !mIsAm; + updateAmPmControl(); + }//对于12小时制时,中午11点和12点交替时对AM和PM的更改 + } else { + if (oldVal == HOURS_IN_ALL_DAY - 1 && newVal == 0) { + cal.setTimeInMillis(mDate.getTimeInMillis()); + cal.add(Calendar.DAY_OF_YEAR, 1); + isDateChanged = true; + //对于24小时制时,晚上11点和12点交替时对日期的更改 + } else if (oldVal == 0 && newVal == HOURS_IN_ALL_DAY - 1) { + cal.setTimeInMillis(mDate.getTimeInMillis()); + cal.add(Calendar.DAY_OF_YEAR, -1); + isDateChanged = true; + } + } + //对于12小时制时,凌晨11点和12点交替时对日期的更改 + int newHour = mHourSpinner.getValue() % HOURS_IN_HALF_DAY + (mIsAm ? 0 : HOURS_IN_HALF_DAY); + //通过数字选择器对newHour的赋值 + mDate.set(Calendar.HOUR_OF_DAY, newHour); + //通过set函数将新的Hour值传给mDate + onDateTimeChanged(); + if (isDateChanged) { + setCurrentYear(cal.get(Calendar.YEAR)); + setCurrentMonth(cal.get(Calendar.MONTH)); + setCurrentDay(cal.get(Calendar.DAY_OF_MONTH)); + } + } + }; + + private NumberPicker.OnValueChangeListener mOnMinuteChangedListener = new NumberPicker.OnValueChangeListener() { + @Override + //这里是对分钟Minute改变的监听 + public void onValueChange(NumberPicker picker, int oldVal, int newVal) { + int minValue = mMinuteSpinner.getMinValue(); + int maxValue = mMinuteSpinner.getMaxValue(); + int offset = 0; + //设置offset,作为小时改变的一个记录数据 + if (oldVal == maxValue && newVal == minValue) { + offset += 1; + } else if (oldVal == minValue && newVal == maxValue) { + offset -= 1; + } + //如果原值为59,新值为0,则offset加1 + //如果原值为0,新值为59,则offset减1 + if (offset != 0) { + mDate.add(Calendar.HOUR_OF_DAY, offset); + mHourSpinner.setValue(getCurrentHour()); + updateDateControl(); + int newHour = getCurrentHourOfDay(); + if (newHour >= HOURS_IN_HALF_DAY) { + mIsAm = false; + updateAmPmControl(); + } else { + mIsAm = true; + updateAmPmControl(); + } + } + mDate.set(Calendar.MINUTE, newVal); + onDateTimeChanged(); + } + }; + + private NumberPicker.OnValueChangeListener mOnAmPmChangedListener = new NumberPicker.OnValueChangeListener() { + //对AM和PM的监听 + @Override + public void onValueChange(NumberPicker picker, int oldVal, int newVal) { + mIsAm = !mIsAm; + if (mIsAm) { + mDate.add(Calendar.HOUR_OF_DAY, -HOURS_IN_HALF_DAY); + } else { + mDate.add(Calendar.HOUR_OF_DAY, HOURS_IN_HALF_DAY); + } + updateAmPmControl(); + onDateTimeChanged(); + } + }; + + public interface OnDateTimeChangedListener { + void onDateTimeChanged(DateTimePicker view, int year, int month, + int dayOfMonth, int hourOfDay, int minute); + } + + public DateTimePicker(Context context) { + this(context, System.currentTimeMillis()); + }//通过对数据库的访问,获取当前的系统时间 + + public DateTimePicker(Context context, long date) { + this(context, date, DateFormat.is24HourFormat(context)); + }//上面函数的得到的是一个天文数字(1970至今的秒数),需要DateFormat将其变得有意义 + + public DateTimePicker(Context context, long date, boolean is24HourView) { + super(context); + //获取系统时间 + mDate = Calendar.getInstance(); + mInitialising = true; + mIsAm = getCurrentHourOfDay() >= HOURS_IN_HALF_DAY; + inflate(context, R.layout.datetime_picker, this); + //如果当前Activity里用到别的layout,比如对话框layout + //还要设置这个layout上的其他组件的内容,就必须用inflate()方法先将对话框的layout找出来 + //然后再用findViewById()找到它上面的其它组件 + mDateSpinner = (NumberPicker) findViewById(R.id.date); + mDateSpinner.setMinValue(DATE_SPINNER_MIN_VAL); + mDateSpinner.setMaxValue(DATE_SPINNER_MAX_VAL); + mDateSpinner.setOnValueChangedListener(mOnDateChangedListener); + + mHourSpinner = (NumberPicker) findViewById(R.id.hour); + mHourSpinner.setOnValueChangedListener(mOnHourChangedListener); + mMinuteSpinner = (NumberPicker) findViewById(R.id.minute); + mMinuteSpinner.setMinValue(MINUT_SPINNER_MIN_VAL); + mMinuteSpinner.setMaxValue(MINUT_SPINNER_MAX_VAL); + mMinuteSpinner.setOnLongPressUpdateInterval(100); + mMinuteSpinner.setOnValueChangedListener(mOnMinuteChangedListener); + + String[] stringsForAmPm = new DateFormatSymbols().getAmPmStrings(); + mAmPmSpinner = (NumberPicker) findViewById(R.id.amPm); + mAmPmSpinner.setMinValue(AMPM_SPINNER_MIN_VAL); + mAmPmSpinner.setMaxValue(AMPM_SPINNER_MAX_VAL); + mAmPmSpinner.setDisplayedValues(stringsForAmPm); + mAmPmSpinner.setOnValueChangedListener(mOnAmPmChangedListener); + + // 更新控制组件的初始状态 + updateDateControl(); + updateHourControl(); + updateAmPmControl(); + + set24HourView(is24HourView); + + // 获取当前时间 + setCurrentDate(date); + + setEnabled(isEnabled()); + + //设置属性描述 + mInitialising = false; + } + + @Override + public void setEnabled(boolean enabled) { + if (mIsEnabled == enabled) { + return; + } + super.setEnabled(enabled); + mDateSpinner.setEnabled(enabled); + mMinuteSpinner.setEnabled(enabled); + mHourSpinner.setEnabled(enabled); + mAmPmSpinner.setEnabled(enabled); + mIsEnabled = enabled; + } + //setEnabled的作用 + //下面的各函数主要是对上面代码引用到的各函数功能的实现 + @Override + public boolean isEnabled() { + return mIsEnabled; + } + + //得到标准的时间 + public long getCurrentDateInTimeMillis() { + return mDate.getTimeInMillis(); + } + //实现函数——得到当前的秒数 + public void setCurrentDate(long date) { + Calendar cal = Calendar.getInstance(); + cal.setTimeInMillis(date); + setCurrentDate(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), + cal.get(Calendar.HOUR_OF_DAY), cal.get(Calendar.MINUTE)); + } + //实现函数功能——设置当前的时间,参数是date + + public void setCurrentDate(int year, int month, + int dayOfMonth, int hourOfDay, int minute) { + setCurrentYear(year); + setCurrentMonth(month); + setCurrentDay(dayOfMonth); + setCurrentHour(hourOfDay); + setCurrentMinute(minute); + + //实现函数功能——设置当前的时间,参数是各详细的变量 + //下面是得到year、month、day等值 + public int getCurrentYear() { + return mDate.get(Calendar.YEAR); + } + + + //设置标准时间 + public void setCurrentYear(int year) { + if (!mInitialising && year == getCurrentYear()) { + return; + } + mDate.set(Calendar.YEAR, year); + updateDateControl(); + onDateTimeChanged(); + } + + //得到一年中的月份 + public int getCurrentMonth() { + return mDate.get(Calendar.MONTH); + } + + //设置一年中的月份 + public void setCurrentMonth(int month) { + if (!mInitialising && month == getCurrentMonth()) { + return; + } + mDate.set(Calendar.MONTH, month); + updateDateControl(); + onDateTimeChanged(); + } + + //得到月份中的天数 + public int getCurrentDay() { + return mDate.get(Calendar.DAY_OF_MONTH); + } + + //设置月份中的天数 + public void setCurrentDay(int dayOfMonth) { + if (!mInitialising && dayOfMonth == getCurrentDay()) { + return; + } + mDate.set(Calendar.DAY_OF_MONTH, dayOfMonth); + updateDateControl(); + onDateTimeChanged(); + } + + 得到在0-23中的现在时间数 + public int getCurrentHourOfDay() { + return mDate.get(Calendar.HOUR_OF_DAY); + } + + private int getCurrentHour() { + if (mIs24HourView){ + return getCurrentHourOfDay(); + } else { + int hour = getCurrentHourOfDay(); + if (hour > HOURS_IN_HALF_DAY) { + return hour - HOURS_IN_HALF_DAY; + } else { + return hour == 0 ? HOURS_IN_HALF_DAY : hour; + } + } + } + + //设置时间,在0-23 + public void setCurrentHour(int hourOfDay) { + if (!mInitialising && hourOfDay == getCurrentHourOfDay()) { + return; + } + mDate.set(Calendar.HOUR_OF_DAY, hourOfDay); + if (!mIs24HourView) { + if (hourOfDay >= HOURS_IN_HALF_DAY) { + mIsAm = false; + if (hourOfDay > HOURS_IN_HALF_DAY) { + hourOfDay -= HOURS_IN_HALF_DAY; + } + } else { + mIsAm = true; + if (hourOfDay == 0) { + hourOfDay = HOURS_IN_HALF_DAY; + } + } + updateAmPmControl(); + } + mHourSpinner.setValue(hourOfDay); + onDateTimeChanged(); + } + + //得到标准的分钟 + public int getCurrentMinute() { + return mDate.get(Calendar.MINUTE); + } + + //设置标准的分钟 + public void setCurrentMinute(int minute) { + if (!mInitialising && minute == getCurrentMinute()) { + return; + } + mMinuteSpinner.setValue(minute); + mDate.set(Calendar.MINUTE, minute); + onDateTimeChanged(); + } + + public boolean is24HourView () { + return mIs24HourView; + } + + //设置24小时或者12小时上下午 + public void set24HourView(boolean is24HourView) { + if (mIs24HourView == is24HourView) { + return; + } + mIs24HourView = is24HourView; + mAmPmSpinner.setVisibility(is24HourView ? View.GONE : View.VISIBLE); + int hour = getCurrentHourOfDay(); + updateHourControl(); + setCurrentHour(hour); + updateAmPmControl(); + } + + private void updateDateControl() { + Calendar cal = Calendar.getInstance(); + cal.setTimeInMillis(mDate.getTimeInMillis()); + cal.add(Calendar.DAY_OF_YEAR, -DAYS_IN_ALL_WEEK / 2 - 1); + mDateSpinner.setDisplayedValues(null); + for (int i = 0; i < DAYS_IN_ALL_WEEK; ++i) { + cal.add(Calendar.DAY_OF_YEAR, 1); + mDateDisplayValues[i] = (String) DateFormat.format("MM.dd EEEE", cal); + } + mDateSpinner.setDisplayedValues(mDateDisplayValues); + mDateSpinner.setValue(DAYS_IN_ALL_WEEK / 2); + mDateSpinner.invalidate(); + } + // 对于星期几的算法 + + private void updateAmPmControl() { + if (mIs24HourView) { + mAmPmSpinner.setVisibility(View.GONE); + } else { + int index = mIsAm ? Calendar.AM : Calendar.PM; + mAmPmSpinner.setValue(index); + mAmPmSpinner.setVisibility(View.VISIBLE); + } + // 对于上下午操作的算法 + } + + private void updateHourControl() { + if (mIs24HourView) { + mHourSpinner.setMinValue(HOUR_SPINNER_MIN_VAL_24_HOUR_VIEW); + mHourSpinner.setMaxValue(HOUR_SPINNER_MAX_VAL_24_HOUR_VIEW); + } else { + mHourSpinner.setMinValue(HOUR_SPINNER_MIN_VAL_12_HOUR_VIEW); + mHourSpinner.setMaxValue(HOUR_SPINNER_MAX_VAL_12_HOUR_VIEW); + } + // 对与小时的算法 + } + + //设置回调函数,如果出现null的错误 + public void setOnDateTimeChangedListener(OnDateTimeChangedListener callback) { + mOnDateTimeChangedListener = callback; + } + + private void onDateTimeChanged() { + if (mOnDateTimeChangedListener != null) { + mOnDateTimeChangedListener.onDateTimeChanged(this, getCurrentYear(), + getCurrentMonth(), getCurrentDay(), getCurrentHourOfDay(), getCurrentMinute()); + } + } +} + + +``` + diff --git a/other/_220320007刘翱翔_代码标注/DateTimePickerDialog.java b/other/_220320007刘翱翔_代码标注/DateTimePickerDialog.java new file mode 100644 index 0000000..d1dc3e4 --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/DateTimePickerDialog.java @@ -0,0 +1,80 @@ +### FoldersListAdapter.java + +```java +package net.micode.notes.ui; + +import android.content.Context; +import android.database.Cursor; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CursorAdapter; +import android.widget.LinearLayout; +import android.widget.TextView; + +import net.micode.notes.R; +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.NoteColumns; + + +public class FoldersListAdapter extends CursorAdapter { + //CursorAdapter是Cursor和ListView的接口 + //FoldersListAdapter继承了CursorAdapter的类 + //主要作用是便签数据库和用户的数据交流 + //这里就是用folder(文件夹)的形式展现给用户 + public static final String [] PROJECTION = { + NoteColumns.ID, + NoteColumns.SNIPPET + }; + //调用数据库中便签的ID和片段 + + public static final int ID_COLUMN = 0; + public static final int NAME_COLUMN = 1; + + public FoldersListAdapter(Context context, Cursor c) { + super(context, c); + } + //数据库操作 + + @Override + public View newView(Context context, Cursor cursor, ViewGroup parent) { + //ViewGroup是容器 + return new FolderListItem(context); + } + //创建一个文件夹,对于各文件夹中子标签的初始化 + + @Override + public void bindView(View view, Context context, Cursor cursor) { + if (view instanceof FolderListItem) { + String folderName = (cursor.getLong(ID_COLUMN) == Notes.ID_ROOT_FOLDER) ? context + .getString(R.string.menu_move_parent_folder) : cursor.getString(NAME_COLUMN); + ((FolderListItem) view).bind(folderName); + } + } + //将各个布局文件绑定起来 + + public String getFolderName(Context context, int position) { + Cursor cursor = (Cursor) getItem(position); + return (cursor.getLong(ID_COLUMN) == Notes.ID_ROOT_FOLDER) ? context + .getString(R.string.menu_move_parent_folder) : cursor.getString(NAME_COLUMN); + } + //根据数据库中标签的ID得到标签的各项内容 + + private class FolderListItem extends LinearLayout { + private TextView mName; + + public FolderListItem(Context context) { + super(context); + //操作数据库 + inflate(context, R.layout.folder_list_item, this); + //根据布局文件的名字等信息将其找出来 + mName = (TextView) findViewById(R.id.tv_folder_name); + } + + public void bind(String name) { + mName.setText(name); + } + } + +} +``` + diff --git a/other/_220320007刘翱翔_代码标注/DropdownMenu.java b/other/_220320007刘翱翔_代码标注/DropdownMenu.java new file mode 100644 index 0000000..f1d5843 --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/DropdownMenu.java @@ -0,0 +1,57 @@ +### DropdownMenu.java + +```java +package net.micode.notes.ui; + +import android.content.Context; +import android.view.Menu; +import android.view.MenuItem; +import android.view.View; +import android.view.View.OnClickListener; +import android.widget.Button; +import android.widget.PopupMenu; +import android.widget.PopupMenu.OnMenuItemClickListener; + +import net.micode.notes.R; + +public class DropdownMenu { + private Button mButton; + private PopupMenu mPopupMenu; + //声明一个下拉菜单 + private Menu mMenu; + + public DropdownMenu(Context context, Button button, int menuId) { + mButton = button; + mButton.setBackgroundResource(R.drawable.dropdown_icon); + //设置这个view的背景 + mPopupMenu = new PopupMenu(context, mButton); + mMenu = mPopupMenu.getMenu(); + mPopupMenu.getMenuInflater().inflate(menuId, mMenu); + //MenuInflater是用来实例化Menu目录下的Menu布局文件 + //根据ID来确认menu的内容选项 + mButton.setOnClickListener(new OnClickListener() { + public void onClick(View v) { + mPopupMenu.show(); + } + }); + } + + public void setOnDropdownMenuItemClickListener(OnMenuItemClickListener listener) { + if (mPopupMenu != null) { + mPopupMenu.setOnMenuItemClickListener(listener); + } + //设置菜单的监听 + } + + public MenuItem findItem(int id) { + return mMenu.findItem(id); + } + //对于菜单选项的初始化,根据索引搜索菜单需要的选项 + + public void setTitle(CharSequence title) { + mButton.setText(title); + } + //布局文件,设置标题 +} +``` + diff --git a/other/_220320007刘翱翔_代码标注/FoldersListAdapter.java b/other/_220320007刘翱翔_代码标注/FoldersListAdapter.java new file mode 100644 index 0000000..d1dc3e4 --- /dev/null +++ b/other/_220320007刘翱翔_代码标注/FoldersListAdapter.java @@ -0,0 +1,80 @@ +### FoldersListAdapter.java + +```java +package net.micode.notes.ui; + +import android.content.Context; +import android.database.Cursor; +import android.view.View; +import android.view.ViewGroup; +import android.widget.CursorAdapter; +import android.widget.LinearLayout; +import android.widget.TextView; + +import net.micode.notes.R; +import net.micode.notes.data.Notes; +import net.micode.notes.data.Notes.NoteColumns; + + +public class FoldersListAdapter extends CursorAdapter { + //CursorAdapter是Cursor和ListView的接口 + //FoldersListAdapter继承了CursorAdapter的类 + //主要作用是便签数据库和用户的数据交流 + //这里就是用folder(文件夹)的形式展现给用户 + public static final String [] PROJECTION = { + NoteColumns.ID, + NoteColumns.SNIPPET + }; + //调用数据库中便签的ID和片段 + + public static final int ID_COLUMN = 0; + public static final int NAME_COLUMN = 1; + + public FoldersListAdapter(Context context, Cursor c) { + super(context, c); + } + //数据库操作 + + @Override + public View newView(Context context, Cursor cursor, ViewGroup parent) { + //ViewGroup是容器 + return new FolderListItem(context); + } + //创建一个文件夹,对于各文件夹中子标签的初始化 + + @Override + public void bindView(View view, Context context, Cursor cursor) { + if (view instanceof FolderListItem) { + String folderName = (cursor.getLong(ID_COLUMN) == Notes.ID_ROOT_FOLDER) ? context + .getString(R.string.menu_move_parent_folder) : cursor.getString(NAME_COLUMN); + ((FolderListItem) view).bind(folderName); + } + } + //将各个布局文件绑定起来 + + public String getFolderName(Context context, int position) { + Cursor cursor = (Cursor) getItem(position); + return (cursor.getLong(ID_COLUMN) == Notes.ID_ROOT_FOLDER) ? context + .getString(R.string.menu_move_parent_folder) : cursor.getString(NAME_COLUMN); + } + //根据数据库中标签的ID得到标签的各项内容 + + private class FolderListItem extends LinearLayout { + private TextView mName; + + public FolderListItem(Context context) { + super(context); + //操作数据库 + inflate(context, R.layout.folder_list_item, this); + //根据布局文件的名字等信息将其找出来 + mName = (TextView) findViewById(R.id.tv_folder_name); + } + + public void bind(String name) { + mName.setText(name); + } + } + +} +``` + diff --git a/other/_左天祥_演示录屏.mp4 b/other/_左天祥_演示录屏.mp4 new file mode 100644 index 0000000..c785222 Binary files /dev/null and b/other/_左天祥_演示录屏.mp4 differ diff --git a/other/_左天祥_软件工程汇报ppt.pptx b/other/_左天祥_软件工程汇报ppt.pptx new file mode 100644 index 0000000..9f26538 Binary files /dev/null and b/other/_左天祥_软件工程汇报ppt.pptx differ diff --git a/src/源代码/XNote/.gradle/4.8/fileChanges/last-build.bin b/src/源代码/XNote/.gradle/4.8/fileChanges/last-build.bin new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/fileChanges/last-build.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/fileContent/fileContent.lock b/src/源代码/XNote/.gradle/4.8/fileContent/fileContent.lock new file mode 100644 index 0000000..1f50a2b Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/fileContent/fileContent.lock differ diff --git a/src/源代码/XNote/.gradle/4.8/fileHashes/fileHashes.bin b/src/源代码/XNote/.gradle/4.8/fileHashes/fileHashes.bin new file mode 100644 index 0000000..527857e Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/fileHashes/fileHashes.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/fileHashes/fileHashes.lock b/src/源代码/XNote/.gradle/4.8/fileHashes/fileHashes.lock new file mode 100644 index 0000000..fbb70f6 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/fileHashes/fileHashes.lock differ diff --git a/src/源代码/XNote/.gradle/4.8/fileHashes/resourceHashesCache.bin b/src/源代码/XNote/.gradle/4.8/fileHashes/resourceHashesCache.bin new file mode 100644 index 0000000..315ab3e Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/fileHashes/resourceHashesCache.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/javaCompile/classAnalysis.bin b/src/源代码/XNote/.gradle/4.8/javaCompile/classAnalysis.bin new file mode 100644 index 0000000..f2af403 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/javaCompile/classAnalysis.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/javaCompile/jarAnalysis.bin b/src/源代码/XNote/.gradle/4.8/javaCompile/jarAnalysis.bin new file mode 100644 index 0000000..cbad51e Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/javaCompile/jarAnalysis.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/javaCompile/javaCompile.lock b/src/源代码/XNote/.gradle/4.8/javaCompile/javaCompile.lock new file mode 100644 index 0000000..0707e06 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/javaCompile/javaCompile.lock differ diff --git a/src/源代码/XNote/.gradle/4.8/javaCompile/processorPath.bin b/src/源代码/XNote/.gradle/4.8/javaCompile/processorPath.bin new file mode 100644 index 0000000..86ab15f Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/javaCompile/processorPath.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/javaCompile/taskHistory.bin b/src/源代码/XNote/.gradle/4.8/javaCompile/taskHistory.bin new file mode 100644 index 0000000..f5a3293 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/javaCompile/taskHistory.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/javaCompile/taskJars.bin b/src/源代码/XNote/.gradle/4.8/javaCompile/taskJars.bin new file mode 100644 index 0000000..37bd9b2 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/javaCompile/taskJars.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/taskHistory/taskHistory.bin b/src/源代码/XNote/.gradle/4.8/taskHistory/taskHistory.bin new file mode 100644 index 0000000..7015696 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/taskHistory/taskHistory.bin differ diff --git a/src/源代码/XNote/.gradle/4.8/taskHistory/taskHistory.lock b/src/源代码/XNote/.gradle/4.8/taskHistory/taskHistory.lock new file mode 100644 index 0000000..2177b48 Binary files /dev/null and b/src/源代码/XNote/.gradle/4.8/taskHistory/taskHistory.lock differ diff --git a/src/源代码/XNote/.gradle/5.4.1/executionHistory/executionHistory.bin b/src/源代码/XNote/.gradle/5.4.1/executionHistory/executionHistory.bin new file mode 100644 index 0000000..13ae3cd Binary files /dev/null and b/src/源代码/XNote/.gradle/5.4.1/executionHistory/executionHistory.bin differ diff --git a/src/源代码/XNote/.gradle/5.4.1/executionHistory/executionHistory.lock b/src/源代码/XNote/.gradle/5.4.1/executionHistory/executionHistory.lock new file mode 100644 index 0000000..9f13b2b Binary files /dev/null and b/src/源代码/XNote/.gradle/5.4.1/executionHistory/executionHistory.lock differ diff --git a/src/源代码/XNote/.gradle/5.4.1/fileChanges/last-build.bin b/src/源代码/XNote/.gradle/5.4.1/fileChanges/last-build.bin new file mode 100644 index 0000000..f76dd23 Binary files /dev/null and b/src/源代码/XNote/.gradle/5.4.1/fileChanges/last-build.bin differ diff --git a/src/源代码/XNote/.gradle/5.4.1/fileHashes/fileHashes.bin b/src/源代码/XNote/.gradle/5.4.1/fileHashes/fileHashes.bin new file mode 100644 index 0000000..b1eb324 Binary files /dev/null and b/src/源代码/XNote/.gradle/5.4.1/fileHashes/fileHashes.bin differ diff --git a/src/源代码/XNote/.gradle/5.4.1/fileHashes/fileHashes.lock b/src/源代码/XNote/.gradle/5.4.1/fileHashes/fileHashes.lock new file mode 100644 index 0000000..0758d48 Binary files /dev/null and b/src/源代码/XNote/.gradle/5.4.1/fileHashes/fileHashes.lock differ diff --git a/src/源代码/XNote/.gradle/5.4.1/gc.properties b/src/源代码/XNote/.gradle/5.4.1/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/src/源代码/XNote/.gradle/buildOutputCleanup/buildOutputCleanup.lock new file mode 100644 index 0000000..d2bf0aa Binary files /dev/null and b/src/源代码/XNote/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/src/源代码/XNote/.gradle/buildOutputCleanup/cache.properties b/src/源代码/XNote/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 0000000..9200d95 --- /dev/null +++ b/src/源代码/XNote/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Fri May 19 11:18:04 CST 2023 +gradle.version=4.8 diff --git a/src/源代码/XNote/.gradle/buildOutputCleanup/outputFiles.bin b/src/源代码/XNote/.gradle/buildOutputCleanup/outputFiles.bin new file mode 100644 index 0000000..ec4faef Binary files /dev/null and b/src/源代码/XNote/.gradle/buildOutputCleanup/outputFiles.bin differ diff --git a/src/源代码/XNote/.gradle/vcs-1/gc.properties b/src/源代码/XNote/.gradle/vcs-1/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.gradle/vcsWorkingDirs/gc.properties b/src/源代码/XNote/.gradle/vcsWorkingDirs/gc.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.gradle/workspace-id.txt b/src/源代码/XNote/.gradle/workspace-id.txt new file mode 100644 index 0000000..ea77f02 Binary files /dev/null and b/src/源代码/XNote/.gradle/workspace-id.txt differ diff --git a/src/源代码/XNote/.gradle/workspace-id.txt.lock b/src/源代码/XNote/.gradle/workspace-id.txt.lock new file mode 100644 index 0000000..52f6c5e Binary files /dev/null and b/src/源代码/XNote/.gradle/workspace-id.txt.lock differ diff --git a/src/源代码/XNote/.idea/caches/build_file_checksums.ser b/src/源代码/XNote/.idea/caches/build_file_checksums.ser new file mode 100644 index 0000000..9dcfa5d Binary files /dev/null and b/src/源代码/XNote/.idea/caches/build_file_checksums.ser differ diff --git a/src/源代码/XNote/.idea/caches/gradle_models.ser b/src/源代码/XNote/.idea/caches/gradle_models.ser new file mode 100644 index 0000000..44477a4 Binary files /dev/null and b/src/源代码/XNote/.idea/caches/gradle_models.ser differ diff --git a/src/源代码/XNote/.idea/codeStyles/Project.xml b/src/源代码/XNote/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..681f41a --- /dev/null +++ b/src/源代码/XNote/.idea/codeStyles/Project.xml @@ -0,0 +1,116 @@ + + + + + + + +
+ + + + xmlns:android + + ^$ + + + +
+
+ + + + xmlns:.* + + ^$ + + + BY_NAME + +
+
+ + + + .*:id + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + .*:name + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + name + + ^$ + + + +
+
+ + + + style + + ^$ + + + +
+
+ + + + .* + + ^$ + + + BY_NAME + +
+
+ + + + .* + + http://schemas.android.com/apk/res/android + + + ANDROID_ATTRIBUTE_ORDER + +
+
+ + + + .* + + .* + + + BY_NAME + +
+
+
+
+
+
\ No newline at end of file diff --git a/src/源代码/XNote/.idea/gradle.xml b/src/源代码/XNote/.idea/gradle.xml new file mode 100644 index 0000000..1fd62ef --- /dev/null +++ b/src/源代码/XNote/.idea/gradle.xml @@ -0,0 +1,21 @@ + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_25_3_1_aar.xml new file mode 100644 index 0000000..d8ffb0f --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_25_3_1_aar.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_appcompat_v7_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_appcompat_v7_25_3_1_aar.xml new file mode 100644 index 0000000..8b7cbc8 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_appcompat_v7_25_3_1_aar.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_annotations_25_3_1_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_annotations_25_3_1_jar.xml new file mode 100644 index 0000000..bfbd2f4 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_annotations_25_3_1_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_compat_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_compat_25_3_1_aar.xml new file mode 100644 index 0000000..744d71a --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_compat_25_3_1_aar.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_core_ui_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_core_ui_25_3_1_aar.xml new file mode 100644 index 0000000..7a0d888 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_core_ui_25_3_1_aar.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_core_utils_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_core_utils_25_3_1_aar.xml new file mode 100644 index 0000000..370e5c5 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_core_utils_25_3_1_aar.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_fragment_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_fragment_25_3_1_aar.xml new file mode 100644 index 0000000..adf1375 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_fragment_25_3_1_aar.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_media_compat_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_media_compat_25_3_1_aar.xml new file mode 100644 index 0000000..92c1ac4 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_media_compat_25_3_1_aar.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_v4_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_v4_25_3_1_aar.xml new file mode 100644 index 0000000..7f81603 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_v4_25_3_1_aar.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_vector_drawable_25_3_1_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_vector_drawable_25_3_1_aar.xml new file mode 100644 index 0000000..b75ac80 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_support_vector_drawable_25_3_1_aar.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_core_2_2_2_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_core_2_2_2_aar.xml new file mode 100644 index 0000000..22caa5f --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_core_2_2_2_aar.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_idling_resource_2_2_2_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_idling_resource_2_2_2_aar.xml new file mode 100644 index 0000000..837fa02 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_idling_resource_2_2_2_aar.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_exposed_instrumentation_api_publish_0_5_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_exposed_instrumentation_api_publish_0_5_aar.xml new file mode 100644 index 0000000..e8ffe28 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_exposed_instrumentation_api_publish_0_5_aar.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_rules_0_5_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_rules_0_5_aar.xml new file mode 100644 index 0000000..0e7641d --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_rules_0_5_aar.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_runner_0_5_aar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_runner_0_5_aar.xml new file mode 100644 index 0000000..32c8e23 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_android_support_test_runner_0_5_aar.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_github_bumptech_glide_glide_3_7_0_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_github_bumptech_glide_glide_3_7_0_jar.xml new file mode 100644 index 0000000..83d89c4 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_github_bumptech_glide_glide_3_7_0_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml new file mode 100644 index 0000000..1c3a896 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml new file mode 100644 index 0000000..67e4786 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__javax_annotation_javax_annotation_api_1_2_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__javax_annotation_javax_annotation_api_1_2_jar.xml new file mode 100644 index 0000000..9b6e06c --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__javax_annotation_javax_annotation_api_1_2_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml new file mode 100644 index 0000000..2d595a0 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__junit_junit_4_12_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__junit_junit_4_12_jar.xml new file mode 100644 index 0000000..0348d45 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__junit_junit_4_12_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml new file mode 100644 index 0000000..78d1029 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml new file mode 100644 index 0000000..6e4ad5d --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml b/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml new file mode 100644 index 0000000..2121e11 --- /dev/null +++ b/src/源代码/XNote/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/misc.xml b/src/源代码/XNote/.idea/misc.xml new file mode 100644 index 0000000..dfd2c79 --- /dev/null +++ b/src/源代码/XNote/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/modules.xml b/src/源代码/XNote/.idea/modules.xml new file mode 100644 index 0000000..13bfc13 --- /dev/null +++ b/src/源代码/XNote/.idea/modules.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/runConfigurations.xml b/src/源代码/XNote/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/src/源代码/XNote/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/sonarIssues.xml b/src/源代码/XNote/.idea/sonarIssues.xml new file mode 100644 index 0000000..cd85f92 --- /dev/null +++ b/src/源代码/XNote/.idea/sonarIssues.xml @@ -0,0 +1,24 @@ + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/0/5/05efc8b1657769a27696d478ded1e95f38737233 b/src/源代码/XNote/.idea/sonarlint/issuestore/0/5/05efc8b1657769a27696d478ded1e95f38737233 new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/0/7/0712df971a99ac4d2fccb8e0fb19f377f3374cca b/src/源代码/XNote/.idea/sonarlint/issuestore/0/7/0712df971a99ac4d2fccb8e0fb19f377f3374cca new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/2/5/25732353a3e11e82c98a9336cdc896070676c594 b/src/源代码/XNote/.idea/sonarlint/issuestore/2/5/25732353a3e11e82c98a9336cdc896070676c594 new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/3/7/370b55b9ba807597d2aa123506d4091d242d570f b/src/源代码/XNote/.idea/sonarlint/issuestore/3/7/370b55b9ba807597d2aa123506d4091d242d570f new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/5/b/5bbfa66edb4db3c7c33c5181f43510990d3307f9 b/src/源代码/XNote/.idea/sonarlint/issuestore/5/b/5bbfa66edb4db3c7c33c5181f43510990d3307f9 new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/7/b/7bc3dc93f31812397809459883b6321278408e58 b/src/源代码/XNote/.idea/sonarlint/issuestore/7/b/7bc3dc93f31812397809459883b6321278408e58 new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/7/c/7c1d2a1927c01fa75a9b4c74ea8addcc06b327ae b/src/源代码/XNote/.idea/sonarlint/issuestore/7/c/7c1d2a1927c01fa75a9b4c74ea8addcc06b327ae new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/8/4/840f2a1760d1b58a2bd7d42951bf172b8eb35a43 b/src/源代码/XNote/.idea/sonarlint/issuestore/8/4/840f2a1760d1b58a2bd7d42951bf172b8eb35a43 new file mode 100644 index 0000000..cf90270 --- /dev/null +++ b/src/源代码/XNote/.idea/sonarlint/issuestore/8/4/840f2a1760d1b58a2bd7d42951bf172b8eb35a43 @@ -0,0 +1,22 @@ + +g java:S117"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.( +u +java:S14509"ZRemove the "imageButton" field and declare it as a local variable in the relevant methods.(ס +l java:S117"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(؟ +[ +java:S3252m"@Use static access with "android.provider.BaseColumns" for "_ID".( +] +java:S2142"FEither re-interrupt this method or rethrow the "InterruptedException".(䠹 +l java:S117"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.( +[ +java:S3252n"@Use static access with "android.provider.BaseColumns" for "_ID".( +l java:S117"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(в +R +java:S1874";Remove this use of "startManagingCursor"; it is deprecated.(ܾ +] +java:S2142"FEither re-interrupt this method or rethrow the "InterruptedException".(䠹 +k java:S117p"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(έ +g java:S117"QRename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'.( +t java:S1167"ZRename this field "GestureName_Add" to match the regular expression '^[a-z][a-zA-Z0-9]*$'.( +x +java:S14505"bRemove the "mGestureOverlayView" field and declare it as a local variable in the relevant methods.(؁ \ No newline at end of file diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e b/src/源代码/XNote/.idea/sonarlint/issuestore/8/c/8c55c3ccc257e5907959013f99656e4c8ec3903e new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/c/c/cc0ad43242a82e1f35d51cd52792a9206fd91dae b/src/源代码/XNote/.idea/sonarlint/issuestore/c/c/cc0ad43242a82e1f35d51cd52792a9206fd91dae new file mode 100644 index 0000000..65f5df7 --- /dev/null +++ b/src/源代码/XNote/.idea/sonarlint/issuestore/c/c/cc0ad43242a82e1f35d51cd52792a9206fd91dae @@ -0,0 +1,2 @@ + +W java:S110"=This class has 11 parents which is greater than 5 authorized.( \ No newline at end of file diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 b/src/源代码/XNote/.idea/sonarlint/issuestore/f/0/f07866736216be0ee2aba49e392191aeae700a35 new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 b/src/源代码/XNote/.idea/sonarlint/issuestore/f/4/f4a01d6a4fcb971362ec00a83903fd3902f52164 new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/.idea/sonarlint/issuestore/index.pb b/src/源代码/XNote/.idea/sonarlint/issuestore/index.pb new file mode 100644 index 0000000..8d1e4ef --- /dev/null +++ b/src/源代码/XNote/.idea/sonarlint/issuestore/index.pb @@ -0,0 +1,25 @@ + +f +6app/src/main/java/com/xnote/activity/MainActivity.java,8\4\840f2a1760d1b58a2bd7d42951bf172b8eb35a43 +u +Eapp2/src/main/java/com/example/cdc4512/vertifydemo/FirstActivity.java,c\c\cc0ad43242a82e1f35d51cd52792a9206fd91dae +P + app/src/main/AndroidManifest.xml,8\c\8c55c3ccc257e5907959013f99656e4c8ec3903e +< + build.gradle,f\0\f07866736216be0ee2aba49e392191aeae700a35 +7 +gradlew,5\b\5bbfa66edb4db3c7c33c5181f43510990d3307f9 +B +import-summary.txt,3\7\370b55b9ba807597d2aa123506d4091d242d570f +@ +local.properties,0\7\0712df971a99ac4d2fccb8e0fb19f377f3374cca +; + app/app.iml,7\c\7c1d2a1927c01fa75a9b4c74ea8addcc06b327ae +@ +app/build.gradle,f\4\f4a01d6a4fcb971362ec00a83903fd3902f52164 +A +app2/build.gradle,2\5\25732353a3e11e82c98a9336cdc896070676c594 +D +captcha/build.gradle,7\b\7bc3dc93f31812397809459883b6321278408e58 +? +settings.gradle,0\5\05efc8b1657769a27696d478ded1e95f38737233 \ No newline at end of file diff --git a/src/源代码/XNote/.idea/workspace.xml b/src/源代码/XNote/.idea/workspace.xml new file mode 100644 index 0000000..ca22675 --- /dev/null +++ b/src/源代码/XNote/.idea/workspace.xml @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1686976858580 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Android API 8 Platform + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/XNote.iml b/src/源代码/XNote/XNote.iml new file mode 100644 index 0000000..c9516cf --- /dev/null +++ b/src/源代码/XNote/XNote.iml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/app.iml b/src/源代码/XNote/app/app.iml new file mode 100644 index 0000000..be1f9a4 --- /dev/null +++ b/src/源代码/XNote/app/app.iml @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build.gradle b/src/源代码/XNote/app/build.gradle new file mode 100644 index 0000000..b667907 --- /dev/null +++ b/src/源代码/XNote/app/build.gradle @@ -0,0 +1,24 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 28 + buildToolsVersion '28.0.3' + + defaultConfig { + applicationId "com.xnote.activity" + minSdkVersion 15 + targetSdkVersion 28 + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' + } + } +} + +dependencies { + implementation project(path: ':app2') + implementation project(path: ':captcha') +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/xnote/activity/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/xnote/activity/R.java new file mode 100644 index 0000000..be1760c --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/generateDebugRFile/out/com/xnote/activity/R.java @@ -0,0 +1,207 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.xnote.activity; + +public final class R { + private R() {} + + public static final class color { + private color() {} + + public static int black = 0x7f060001; + public static int transparent = 0x7f060002; + } + public static final class dimen { + private dimen() {} + + public static int widget_margin = 0x7f080001; + } + public static final class drawable { + private drawable() {} + + public static int add_shortcut_to_home = 0x7f090001; + public static int alarm_time = 0x7f090002; + public static int bg_color = 0x7f090003; + public static int buttons_background = 0x7f090004; + public static int delete = 0x7f090005; + public static int delete_records_cancel = 0x7f090006; + public static int delete_records_cancel_2 = 0x7f090007; + public static int delete_records_cancel_xml = 0x7f090008; + public static int delete_records_ok_xml = 0x7f090009; + public static int deleterecords_ok = 0x7f09000a; + public static int deleterecords_ok_2 = 0x7f09000b; + public static int edit_folder_title = 0x7f09000c; + public static int export_to_text = 0x7f09000d; + public static int folder_background = 0x7f09000e; + public static int icon = 0x7f09000f; + public static int imagebutton_background = 0x7f090010; + public static int imagebutton_background_2 = 0x7f090011; + public static int item_light_blue = 0x7f090012; + public static int item_light_green = 0x7f090013; + public static int item_light_pink = 0x7f090014; + public static int item_light_white = 0x7f090015; + public static int item_light_yellow = 0x7f090016; + public static int main_background = 0x7f090017; + public static int move_out_of_folder = 0x7f090018; + public static int move_to_folder = 0x7f090019; + public static int new_folder = 0x7f09001a; + public static int new_note = 0x7f09001b; + public static int notes_bg_blue = 0x7f09001c; + public static int notes_bg_gray = 0x7f09001d; + public static int notes_bg_green = 0x7f09001e; + public static int notes_bg_pink = 0x7f09001f; + public static int notes_header_blue = 0x7f090020; + public static int notes_header_gray = 0x7f090021; + public static int notes_header_green = 0x7f090022; + public static int notes_header_pink = 0x7f090023; + public static int notes_header_yellow = 0x7f090024; + public static int share = 0x7f090025; + public static int shortcut_folder = 0x7f090026; + public static int title_background = 0x7f090027; + public static int title_bar_imagebutton_add_note = 0x7f090028; + public static int widget_big_blue = 0x7f090029; + public static int widget_big_gray = 0x7f09002a; + public static int widget_big_green = 0x7f09002b; + public static int widget_big_red = 0x7f09002c; + public static int widget_big_yellow = 0x7f09002d; + public static int widget_small_blue = 0x7f09002e; + public static int widget_small_gray = 0x7f09002f; + public static int widget_small_green = 0x7f090030; + public static int widget_small_red = 0x7f090031; + public static int widget_small_yellow = 0x7f090032; + } + public static final class id { + private id() {} + + public static int btnAlarmDate = 0x7f0c0001; + public static int btnAlarmTime = 0x7f0c0002; + public static int btnCancelDel = 0x7f0c0003; + public static int btnOK = 0x7f0c0004; + public static int cb_right = 0x7f0c0005; + public static int dialog_input_psd_root = 0x7f0c0006; + public static int dialog_layout_new_folder_root = 0x7f0c0007; + public static int dialog_layout_set_password_root = 0x7f0c0008; + public static int et_confirm_Password = 0x7f0c0009; + public static int et_content = 0x7f0c000a; + public static int et_dialog_new_folder = 0x7f0c000b; + public static int et_input_password = 0x7f0c000c; + public static int et_password = 0x7f0c000d; + public static int gestureOverlayView = 0x7f0c000e; + public static int green = 0x7f0c000f; + public static int ib_move_to_folder = 0x7f0c0010; + public static int imageButton = 0x7f0c0011; + public static int imagebutton_bgcolor = 0x7f0c0012; + public static int list = 0x7f0c0013; + public static int listview = 0x7f0c0014; + public static int listview_linearlayout = 0x7f0c0015; + public static int note_detail_header = 0x7f0c0016; + public static int pink = 0x7f0c0017; + public static int tvTitle = 0x7f0c0018; + public static int tvTitle_move_to_folder = 0x7f0c0019; + public static int tv_left = 0x7f0c001a; + public static int tv_note_date_time = 0x7f0c001b; + public static int tv_password = 0x7f0c001c; + public static int tv_right = 0x7f0c001d; + public static int tv_widget_date_time = 0x7f0c001e; + public static int white = 0x7f0c001f; + public static int widget32 = 0x7f0c0020; + public static int widget35 = 0x7f0c0021; + public static int widget3535 = 0x7f0c0022; + public static int widget40 = 0x7f0c0023; + public static int widget46 = 0x7f0c0024; + public static int widget4646 = 0x7f0c0025; + public static int widget_2x2 = 0x7f0c0026; + public static int widget_2x2_imageView = 0x7f0c0027; + public static int widget_2x2_textView = 0x7f0c0028; + public static int widget_4x4 = 0x7f0c0029; + public static int widget_4x4_imageView = 0x7f0c002a; + public static int widget_4x4_textView = 0x7f0c002b; + public static int widget_detail_header = 0x7f0c002c; + public static int yellow = 0x7f0c002d; + } + public static final class layout { + private layout() {} + + public static int dialog_input_psd = 0x7f0f0001; + public static int dialog_layout_new_folder = 0x7f0f0002; + public static int dialog_layout_set_password = 0x7f0f0003; + public static int dialog_note_bg_color = 0x7f0f0004; + public static int index_page = 0x7f0f0005; + public static int listview_del_or_move_item_layout = 0x7f0f0006; + public static int listview_item_layout = 0x7f0f0007; + public static int listview_layout_del_or_move_records = 0x7f0f0008; + public static int note_detail = 0x7f0f0009; + public static int set_alarm = 0x7f0f000a; + public static int widget_2x2_layout = 0x7f0f000b; + public static int widget_4x4_layout = 0x7f0f000c; + public static int widget_note_layout = 0x7f0f000d; + } + public static final class raw { + private raw() {} + + public static int gestures = 0x7f140001; + } + public static final class string { + private string() {} + + public static int Cancel = 0x7f150001; + public static int Ok = 0x7f150002; + public static int about = 0x7f150003; + public static int add_shortcut_to_home = 0x7f150004; + public static int alarm_time = 0x7f150005; + public static int app_name = 0x7f150006; + public static int app_widget2x2 = 0x7f150007; + public static int app_widget4x4 = 0x7f150008; + public static int backupDataFailed = 0x7f150009; + public static int backupDataSuc = 0x7f15000a; + public static int backup_data = 0x7f15000b; + public static int change_font_size = 0x7f15000c; + public static int change_password = 0x7f15000d; + public static int change_password_failed = 0x7f15000e; + public static int change_password_succ = 0x7f15000f; + public static int clear_password = 0x7f150010; + public static int confirm_psd = 0x7f150011; + public static int delete = 0x7f150012; + public static int delete_note = 0x7f150013; + public static int edit_folder_title = 0x7f150014; + public static int edit_note = 0x7f150015; + public static int exportTXTFailed = 0x7f150016; + public static int exportTXTSuc = 0x7f150017; + public static int export_to_text = 0x7f150018; + public static int hello = 0x7f150019; + public static int move_out_of_folder = 0x7f15001a; + public static int move_to_folder = 0x7f15001b; + public static int new_folder = 0x7f15001c; + public static int new_note = 0x7f15001d; + public static int password = 0x7f15001e; + public static int restoreDataFailed = 0x7f15001f; + public static int restoreDataSuc = 0x7f150020; + public static int restore_data = 0x7f150021; + public static int set_alarm_date = 0x7f150022; + public static int set_alarm_time = 0x7f150023; + public static int set_password = 0x7f150024; + public static int set_password_failde = 0x7f150025; + public static int set_password_succ = 0x7f150026; + public static int share_sms_or_email = 0x7f150027; + public static int share_with_email = 0x7f150028; + public static int share_with_sms = 0x7f150029; + } + public static final class style { + private style() {} + + public static int EditTextStyle = 0x7f160001; + public static int TitleBarImageButton = 0x7f160002; + public static int TitleBarLinearLayout = 0x7f160003; + public static int TitleBarTextView = 0x7f160004; + } + public static final class xml { + private xml() {} + + public static int widget_2x2_layout_info = 0x7f190001; + public static int widget_4x4_layout_info = 0x7f190002; + } +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/compat/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/compat/R.java new file mode 100644 index 0000000..07dc18d --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/compat/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.compat; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreui/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreui/R.java new file mode 100644 index 0000000..2356bc7 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreui/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coreui; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreutils/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreutils/R.java new file mode 100644 index 0000000..1678611 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/coreutils/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.coreutils; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/fragment/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/fragment/R.java new file mode 100644 index 0000000..57c8f8c --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/fragment/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.fragment; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/R.java new file mode 100644 index 0000000..a97b0ed --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.graphics.drawable; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/animated/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/animated/R.java new file mode 100644 index 0000000..f5a9a9d --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/graphics/drawable/animated/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.graphics.drawable.animated; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/mediacompat/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/mediacompat/R.java new file mode 100644 index 0000000..bc59ddb --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/mediacompat/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.mediacompat; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v4/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v4/R.java new file mode 100644 index 0000000..6dcff94 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v4/R.java @@ -0,0 +1,12 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v4; + +public final class R { + private R() {} + +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/appcompat/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/appcompat/R.java new file mode 100644 index 0000000..fef3dfa --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/android/support/v7/appcompat/R.java @@ -0,0 +1,1484 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package android.support.v7.appcompat; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f020000; + public static final int actionBarItemBackground = 0x7f020001; + public static final int actionBarPopupTheme = 0x7f020002; + public static final int actionBarSize = 0x7f020003; + public static final int actionBarSplitStyle = 0x7f020004; + public static final int actionBarStyle = 0x7f020005; + public static final int actionBarTabBarStyle = 0x7f020006; + public static final int actionBarTabStyle = 0x7f020007; + public static final int actionBarTabTextStyle = 0x7f020008; + public static final int actionBarTheme = 0x7f020009; + public static final int actionBarWidgetTheme = 0x7f02000a; + public static final int actionButtonStyle = 0x7f02000b; + public static final int actionDropDownStyle = 0x7f02000c; + public static final int actionLayout = 0x7f02000d; + public static final int actionMenuTextAppearance = 0x7f02000e; + public static final int actionMenuTextColor = 0x7f02000f; + public static final int actionModeBackground = 0x7f020010; + public static final int actionModeCloseButtonStyle = 0x7f020011; + public static final int actionModeCloseDrawable = 0x7f020012; + public static final int actionModeCopyDrawable = 0x7f020013; + public static final int actionModeCutDrawable = 0x7f020014; + public static final int actionModeFindDrawable = 0x7f020015; + public static final int actionModePasteDrawable = 0x7f020016; + public static final int actionModePopupWindowStyle = 0x7f020017; + public static final int actionModeSelectAllDrawable = 0x7f020018; + public static final int actionModeShareDrawable = 0x7f020019; + public static final int actionModeSplitBackground = 0x7f02001a; + public static final int actionModeStyle = 0x7f02001b; + public static final int actionModeWebSearchDrawable = 0x7f02001c; + public static final int actionOverflowButtonStyle = 0x7f02001d; + public static final int actionOverflowMenuStyle = 0x7f02001e; + public static final int actionProviderClass = 0x7f02001f; + public static final int actionViewClass = 0x7f020020; + public static final int activityChooserViewStyle = 0x7f020021; + public static final int alertDialogButtonGroupStyle = 0x7f020022; + public static final int alertDialogCenterButtons = 0x7f020023; + public static final int alertDialogStyle = 0x7f020024; + public static final int alertDialogTheme = 0x7f020025; + public static final int allowStacking = 0x7f020026; + public static final int alpha = 0x7f020027; + public static final int arrowHeadLength = 0x7f020028; + public static final int arrowShaftLength = 0x7f020029; + public static final int autoCompleteTextViewStyle = 0x7f02002a; + public static final int background = 0x7f02002b; + public static final int backgroundSplit = 0x7f02002c; + public static final int backgroundStacked = 0x7f02002d; + public static final int backgroundTint = 0x7f02002e; + public static final int backgroundTintMode = 0x7f02002f; + public static final int barLength = 0x7f020030; + public static final int borderlessButtonStyle = 0x7f020032; + public static final int buttonBarButtonStyle = 0x7f020033; + public static final int buttonBarNegativeButtonStyle = 0x7f020034; + public static final int buttonBarNeutralButtonStyle = 0x7f020035; + public static final int buttonBarPositiveButtonStyle = 0x7f020036; + public static final int buttonBarStyle = 0x7f020037; + public static final int buttonGravity = 0x7f020038; + public static final int buttonPanelSideLayout = 0x7f020039; + public static final int buttonStyle = 0x7f02003a; + public static final int buttonStyleSmall = 0x7f02003b; + public static final int buttonTint = 0x7f02003c; + public static final int buttonTintMode = 0x7f02003d; + public static final int checkboxStyle = 0x7f02003e; + public static final int checkedTextViewStyle = 0x7f02003f; + public static final int closeIcon = 0x7f020040; + public static final int closeItemLayout = 0x7f020041; + public static final int collapseContentDescription = 0x7f020042; + public static final int collapseIcon = 0x7f020043; + public static final int color = 0x7f020044; + public static final int colorAccent = 0x7f020045; + public static final int colorBackgroundFloating = 0x7f020046; + public static final int colorButtonNormal = 0x7f020047; + public static final int colorControlActivated = 0x7f020048; + public static final int colorControlHighlight = 0x7f020049; + public static final int colorControlNormal = 0x7f02004a; + public static final int colorPrimary = 0x7f02004b; + public static final int colorPrimaryDark = 0x7f02004c; + public static final int colorSwitchThumbNormal = 0x7f02004d; + public static final int commitIcon = 0x7f02004e; + public static final int contentInsetEnd = 0x7f02004f; + public static final int contentInsetEndWithActions = 0x7f020050; + public static final int contentInsetLeft = 0x7f020051; + public static final int contentInsetRight = 0x7f020052; + public static final int contentInsetStart = 0x7f020053; + public static final int contentInsetStartWithNavigation = 0x7f020054; + public static final int controlBackground = 0x7f020055; + public static final int customNavigationLayout = 0x7f020056; + public static final int defaultQueryHint = 0x7f020057; + public static final int dialogPreferredPadding = 0x7f020058; + public static final int dialogTheme = 0x7f020059; + public static final int displayOptions = 0x7f02005a; + public static final int divider = 0x7f02005b; + public static final int dividerHorizontal = 0x7f02005c; + public static final int dividerPadding = 0x7f02005d; + public static final int dividerVertical = 0x7f02005e; + public static final int drawableSize = 0x7f02005f; + public static final int drawerArrowStyle = 0x7f020060; + public static final int dropDownListViewStyle = 0x7f020061; + public static final int dropdownListPreferredItemHeight = 0x7f020062; + public static final int editTextBackground = 0x7f020063; + public static final int editTextColor = 0x7f020064; + public static final int editTextStyle = 0x7f020065; + public static final int elevation = 0x7f020066; + public static final int expandActivityOverflowButtonDrawable = 0x7f020067; + public static final int gapBetweenBars = 0x7f020068; + public static final int goIcon = 0x7f020069; + public static final int height = 0x7f02006a; + public static final int hideOnContentScroll = 0x7f02006b; + public static final int homeAsUpIndicator = 0x7f02006c; + public static final int homeLayout = 0x7f02006d; + public static final int icon = 0x7f02006e; + public static final int iconifiedByDefault = 0x7f02006f; + public static final int imageButtonStyle = 0x7f020070; + public static final int indeterminateProgressStyle = 0x7f020071; + public static final int initialActivityCount = 0x7f020072; + public static final int isLightTheme = 0x7f020073; + public static final int itemPadding = 0x7f020074; + public static final int layout = 0x7f020075; + public static final int listChoiceBackgroundIndicator = 0x7f020076; + public static final int listDividerAlertDialog = 0x7f020077; + public static final int listItemLayout = 0x7f020078; + public static final int listLayout = 0x7f020079; + public static final int listMenuViewStyle = 0x7f02007a; + public static final int listPopupWindowStyle = 0x7f02007b; + public static final int listPreferredItemHeight = 0x7f02007c; + public static final int listPreferredItemHeightLarge = 0x7f02007d; + public static final int listPreferredItemHeightSmall = 0x7f02007e; + public static final int listPreferredItemPaddingLeft = 0x7f02007f; + public static final int listPreferredItemPaddingRight = 0x7f020080; + public static final int logo = 0x7f020081; + public static final int logoDescription = 0x7f020082; + public static final int maxButtonHeight = 0x7f020083; + public static final int measureWithLargestChild = 0x7f020085; + public static final int multiChoiceItemLayout = 0x7f020087; + public static final int navigationContentDescription = 0x7f020088; + public static final int navigationIcon = 0x7f020089; + public static final int navigationMode = 0x7f02008a; + public static final int overlapAnchor = 0x7f02008b; + public static final int paddingBottomNoButtons = 0x7f02008c; + public static final int paddingEnd = 0x7f02008d; + public static final int paddingStart = 0x7f02008e; + public static final int paddingTopNoTitle = 0x7f02008f; + public static final int panelBackground = 0x7f020090; + public static final int panelMenuListTheme = 0x7f020091; + public static final int panelMenuListWidth = 0x7f020092; + public static final int popupMenuStyle = 0x7f020093; + public static final int popupTheme = 0x7f020094; + public static final int popupWindowStyle = 0x7f020095; + public static final int preserveIconSpacing = 0x7f020096; + public static final int progressBarPadding = 0x7f020097; + public static final int progressBarStyle = 0x7f020098; + public static final int queryBackground = 0x7f02009a; + public static final int queryHint = 0x7f02009b; + public static final int radioButtonStyle = 0x7f02009c; + public static final int ratingBarStyle = 0x7f02009d; + public static final int ratingBarStyleIndicator = 0x7f02009e; + public static final int ratingBarStyleSmall = 0x7f02009f; + public static final int searchHintIcon = 0x7f0200a0; + public static final int searchIcon = 0x7f0200a1; + public static final int searchViewStyle = 0x7f0200a2; + public static final int seekBarStyle = 0x7f0200a3; + public static final int selectableItemBackground = 0x7f0200a4; + public static final int selectableItemBackgroundBorderless = 0x7f0200a5; + public static final int showAsAction = 0x7f0200a6; + public static final int showDividers = 0x7f0200a7; + public static final int showText = 0x7f0200a8; + public static final int showTitle = 0x7f0200a9; + public static final int singleChoiceItemLayout = 0x7f0200aa; + public static final int spinBars = 0x7f0200ab; + public static final int spinnerDropDownItemStyle = 0x7f0200ac; + public static final int spinnerStyle = 0x7f0200ad; + public static final int splitTrack = 0x7f0200ae; + public static final int srcCompat = 0x7f0200b0; + public static final int state_above_anchor = 0x7f0200b1; + public static final int subMenuArrow = 0x7f0200b2; + public static final int submitBackground = 0x7f0200b3; + public static final int subtitle = 0x7f0200b4; + public static final int subtitleTextAppearance = 0x7f0200b5; + public static final int subtitleTextColor = 0x7f0200b6; + public static final int subtitleTextStyle = 0x7f0200b7; + public static final int suggestionRowLayout = 0x7f0200b8; + public static final int switchMinWidth = 0x7f0200b9; + public static final int switchPadding = 0x7f0200ba; + public static final int switchStyle = 0x7f0200bb; + public static final int switchTextAppearance = 0x7f0200bc; + public static final int textAllCaps = 0x7f0200bd; + public static final int textAppearanceLargePopupMenu = 0x7f0200be; + public static final int textAppearanceListItem = 0x7f0200bf; + public static final int textAppearanceListItemSmall = 0x7f0200c0; + public static final int textAppearancePopupMenuHeader = 0x7f0200c1; + public static final int textAppearanceSearchResultSubtitle = 0x7f0200c2; + public static final int textAppearanceSearchResultTitle = 0x7f0200c3; + public static final int textAppearanceSmallPopupMenu = 0x7f0200c4; + public static final int textColorAlertDialogListItem = 0x7f0200c5; + public static final int textColorSearchUrl = 0x7f0200c6; + public static final int theme = 0x7f0200c7; + public static final int thickness = 0x7f0200c8; + public static final int thumbTextPadding = 0x7f0200ca; + public static final int thumbTint = 0x7f0200cb; + public static final int thumbTintMode = 0x7f0200cc; + public static final int tickMark = 0x7f0200cd; + public static final int tickMarkTint = 0x7f0200ce; + public static final int tickMarkTintMode = 0x7f0200cf; + public static final int title = 0x7f0200d0; + public static final int titleMargin = 0x7f0200d1; + public static final int titleMarginBottom = 0x7f0200d2; + public static final int titleMarginEnd = 0x7f0200d3; + public static final int titleMarginStart = 0x7f0200d4; + public static final int titleMarginTop = 0x7f0200d5; + public static final int titleMargins = 0x7f0200d6; + public static final int titleTextAppearance = 0x7f0200d7; + public static final int titleTextColor = 0x7f0200d8; + public static final int titleTextStyle = 0x7f0200d9; + public static final int toolbarNavigationButtonStyle = 0x7f0200da; + public static final int toolbarStyle = 0x7f0200db; + public static final int track = 0x7f0200dc; + public static final int trackTint = 0x7f0200dd; + public static final int trackTintMode = 0x7f0200de; + public static final int voiceIcon = 0x7f0200df; + public static final int windowActionBar = 0x7f0200e0; + public static final int windowActionBarOverlay = 0x7f0200e1; + public static final int windowActionModeOverlay = 0x7f0200e2; + public static final int windowFixedHeightMajor = 0x7f0200e3; + public static final int windowFixedHeightMinor = 0x7f0200e4; + public static final int windowFixedWidthMajor = 0x7f0200e5; + public static final int windowFixedWidthMinor = 0x7f0200e6; + public static final int windowMinWidthMajor = 0x7f0200e7; + public static final int windowMinWidthMinor = 0x7f0200e8; + public static final int windowNoTitle = 0x7f0200e9; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f030000; + public static final int abc_allow_stacked_button_bar = 0x7f030001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f030002; + public static final int abc_config_closeDialogWhenTouchOutside = 0x7f030003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f030004; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f040001; + public static final int abc_btn_colored_borderless_text_material = 0x7f040002; + public static final int abc_btn_colored_text_material = 0x7f040003; + public static final int abc_color_highlight_material = 0x7f040004; + public static final int abc_hint_foreground_material_dark = 0x7f040005; + public static final int abc_hint_foreground_material_light = 0x7f040006; + public static final int abc_input_method_navigation_guard = 0x7f040007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f040008; + public static final int abc_primary_text_disable_only_material_light = 0x7f040009; + public static final int abc_primary_text_material_dark = 0x7f04000a; + public static final int abc_primary_text_material_light = 0x7f04000b; + public static final int abc_search_url_text = 0x7f04000c; + public static final int abc_search_url_text_normal = 0x7f04000d; + public static final int abc_search_url_text_pressed = 0x7f04000e; + public static final int abc_search_url_text_selected = 0x7f04000f; + public static final int abc_secondary_text_material_dark = 0x7f040010; + public static final int abc_secondary_text_material_light = 0x7f040011; + public static final int abc_tint_btn_checkable = 0x7f040012; + public static final int abc_tint_default = 0x7f040013; + public static final int abc_tint_edittext = 0x7f040014; + public static final int abc_tint_seek_thumb = 0x7f040015; + public static final int abc_tint_spinner = 0x7f040016; + public static final int abc_tint_switch_thumb = 0x7f040017; + public static final int abc_tint_switch_track = 0x7f040018; + public static final int accent_material_dark = 0x7f040019; + public static final int accent_material_light = 0x7f04001a; + public static final int background_floating_material_dark = 0x7f04001b; + public static final int background_floating_material_light = 0x7f04001c; + public static final int background_material_dark = 0x7f04001d; + public static final int background_material_light = 0x7f04001e; + public static final int bright_foreground_disabled_material_dark = 0x7f040020; + public static final int bright_foreground_disabled_material_light = 0x7f040021; + public static final int bright_foreground_inverse_material_dark = 0x7f040022; + public static final int bright_foreground_inverse_material_light = 0x7f040023; + public static final int bright_foreground_material_dark = 0x7f040024; + public static final int bright_foreground_material_light = 0x7f040025; + public static final int button_material_dark = 0x7f040026; + public static final int button_material_light = 0x7f040027; + public static final int dim_foreground_disabled_material_dark = 0x7f04002b; + public static final int dim_foreground_disabled_material_light = 0x7f04002c; + public static final int dim_foreground_material_dark = 0x7f04002d; + public static final int dim_foreground_material_light = 0x7f04002e; + public static final int foreground_material_dark = 0x7f04002f; + public static final int foreground_material_light = 0x7f040030; + public static final int highlighted_text_material_dark = 0x7f040031; + public static final int highlighted_text_material_light = 0x7f040032; + public static final int material_blue_grey_800 = 0x7f040033; + public static final int material_blue_grey_900 = 0x7f040034; + public static final int material_blue_grey_950 = 0x7f040035; + public static final int material_deep_teal_200 = 0x7f040036; + public static final int material_deep_teal_500 = 0x7f040037; + public static final int material_grey_100 = 0x7f040038; + public static final int material_grey_300 = 0x7f040039; + public static final int material_grey_50 = 0x7f04003a; + public static final int material_grey_600 = 0x7f04003b; + public static final int material_grey_800 = 0x7f04003c; + public static final int material_grey_850 = 0x7f04003d; + public static final int material_grey_900 = 0x7f04003e; + public static final int notification_action_color_filter = 0x7f04003f; + public static final int notification_icon_bg_color = 0x7f040040; + public static final int notification_material_background_media_default_color = 0x7f040041; + public static final int primary_dark_material_dark = 0x7f040042; + public static final int primary_dark_material_light = 0x7f040043; + public static final int primary_material_dark = 0x7f040044; + public static final int primary_material_light = 0x7f040045; + public static final int primary_text_default_material_dark = 0x7f040046; + public static final int primary_text_default_material_light = 0x7f040047; + public static final int primary_text_disabled_material_dark = 0x7f040048; + public static final int primary_text_disabled_material_light = 0x7f040049; + public static final int ripple_material_dark = 0x7f04004a; + public static final int ripple_material_light = 0x7f04004b; + public static final int secondary_text_default_material_dark = 0x7f04004c; + public static final int secondary_text_default_material_light = 0x7f04004d; + public static final int secondary_text_disabled_material_dark = 0x7f04004e; + public static final int secondary_text_disabled_material_light = 0x7f04004f; + public static final int switch_thumb_disabled_material_dark = 0x7f040050; + public static final int switch_thumb_disabled_material_light = 0x7f040051; + public static final int switch_thumb_material_dark = 0x7f040052; + public static final int switch_thumb_material_light = 0x7f040053; + public static final int switch_thumb_normal_material_dark = 0x7f040054; + public static final int switch_thumb_normal_material_light = 0x7f040055; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f050000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f050001; + public static final int abc_action_bar_default_height_material = 0x7f050002; + public static final int abc_action_bar_default_padding_end_material = 0x7f050003; + public static final int abc_action_bar_default_padding_start_material = 0x7f050004; + public static final int abc_action_bar_elevation_material = 0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008; + public static final int abc_action_bar_progress_bar_size = 0x7f050009; + public static final int abc_action_bar_stacked_max_height = 0x7f05000a; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000b; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000c; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000d; + public static final int abc_action_button_min_height_material = 0x7f05000e; + public static final int abc_action_button_min_width_material = 0x7f05000f; + public static final int abc_action_button_min_width_overflow_material = 0x7f050010; + public static final int abc_alert_dialog_button_bar_height = 0x7f050011; + public static final int abc_button_inset_horizontal_material = 0x7f050012; + public static final int abc_button_inset_vertical_material = 0x7f050013; + public static final int abc_button_padding_horizontal_material = 0x7f050014; + public static final int abc_button_padding_vertical_material = 0x7f050015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f050016; + public static final int abc_config_prefDialogWidth = 0x7f050017; + public static final int abc_control_corner_material = 0x7f050018; + public static final int abc_control_inset_material = 0x7f050019; + public static final int abc_control_padding_material = 0x7f05001a; + public static final int abc_dialog_fixed_height_major = 0x7f05001b; + public static final int abc_dialog_fixed_height_minor = 0x7f05001c; + public static final int abc_dialog_fixed_width_major = 0x7f05001d; + public static final int abc_dialog_fixed_width_minor = 0x7f05001e; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f05001f; + public static final int abc_dialog_list_padding_top_no_title = 0x7f050020; + public static final int abc_dialog_min_width_major = 0x7f050021; + public static final int abc_dialog_min_width_minor = 0x7f050022; + public static final int abc_dialog_padding_material = 0x7f050023; + public static final int abc_dialog_padding_top_material = 0x7f050024; + public static final int abc_dialog_title_divider_material = 0x7f050025; + public static final int abc_disabled_alpha_material_dark = 0x7f050026; + public static final int abc_disabled_alpha_material_light = 0x7f050027; + public static final int abc_dropdownitem_icon_width = 0x7f050028; + public static final int abc_dropdownitem_text_padding_left = 0x7f050029; + public static final int abc_dropdownitem_text_padding_right = 0x7f05002a; + public static final int abc_edit_text_inset_bottom_material = 0x7f05002b; + public static final int abc_edit_text_inset_horizontal_material = 0x7f05002c; + public static final int abc_edit_text_inset_top_material = 0x7f05002d; + public static final int abc_floating_window_z = 0x7f05002e; + public static final int abc_list_item_padding_horizontal_material = 0x7f05002f; + public static final int abc_panel_menu_list_width = 0x7f050030; + public static final int abc_progress_bar_height_material = 0x7f050031; + public static final int abc_search_view_preferred_height = 0x7f050032; + public static final int abc_search_view_preferred_width = 0x7f050033; + public static final int abc_seekbar_track_background_height_material = 0x7f050034; + public static final int abc_seekbar_track_progress_height_material = 0x7f050035; + public static final int abc_select_dialog_padding_start_material = 0x7f050036; + public static final int abc_switch_padding = 0x7f050037; + public static final int abc_text_size_body_1_material = 0x7f050038; + public static final int abc_text_size_body_2_material = 0x7f050039; + public static final int abc_text_size_button_material = 0x7f05003a; + public static final int abc_text_size_caption_material = 0x7f05003b; + public static final int abc_text_size_display_1_material = 0x7f05003c; + public static final int abc_text_size_display_2_material = 0x7f05003d; + public static final int abc_text_size_display_3_material = 0x7f05003e; + public static final int abc_text_size_display_4_material = 0x7f05003f; + public static final int abc_text_size_headline_material = 0x7f050040; + public static final int abc_text_size_large_material = 0x7f050041; + public static final int abc_text_size_medium_material = 0x7f050042; + public static final int abc_text_size_menu_header_material = 0x7f050043; + public static final int abc_text_size_menu_material = 0x7f050044; + public static final int abc_text_size_small_material = 0x7f050045; + public static final int abc_text_size_subhead_material = 0x7f050046; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f050047; + public static final int abc_text_size_title_material = 0x7f050048; + public static final int abc_text_size_title_material_toolbar = 0x7f050049; + public static final int disabled_alpha_material_dark = 0x7f05004a; + public static final int disabled_alpha_material_light = 0x7f05004b; + public static final int highlight_alpha_material_colored = 0x7f05004c; + public static final int highlight_alpha_material_dark = 0x7f05004d; + public static final int highlight_alpha_material_light = 0x7f05004e; + public static final int hint_alpha_material_dark = 0x7f05004f; + public static final int hint_alpha_material_light = 0x7f050050; + public static final int hint_pressed_alpha_material_dark = 0x7f050051; + public static final int hint_pressed_alpha_material_light = 0x7f050052; + public static final int notification_action_icon_size = 0x7f050053; + public static final int notification_action_text_size = 0x7f050054; + public static final int notification_big_circle_margin = 0x7f050055; + public static final int notification_content_margin_start = 0x7f050056; + public static final int notification_large_icon_height = 0x7f050057; + public static final int notification_large_icon_width = 0x7f050058; + public static final int notification_main_column_padding_top = 0x7f050059; + public static final int notification_media_narrow_margin = 0x7f05005a; + public static final int notification_right_icon_size = 0x7f05005b; + public static final int notification_right_side_padding_top = 0x7f05005c; + public static final int notification_small_icon_background_padding = 0x7f05005d; + public static final int notification_small_icon_size_as_large = 0x7f05005e; + public static final int notification_subtext_size = 0x7f05005f; + public static final int notification_top_pad = 0x7f050060; + public static final int notification_top_pad_large_text = 0x7f050061; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060000; + public static final int abc_action_bar_item_background_material = 0x7f060001; + public static final int abc_btn_borderless_material = 0x7f060002; + public static final int abc_btn_check_material = 0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060005; + public static final int abc_btn_colored_material = 0x7f060006; + public static final int abc_btn_default_mtrl_shape = 0x7f060007; + public static final int abc_btn_radio_material = 0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000c; + public static final int abc_cab_background_internal_bg = 0x7f06000d; + public static final int abc_cab_background_top_material = 0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f06000f; + public static final int abc_control_background_material = 0x7f060010; + public static final int abc_dialog_material_background = 0x7f060011; + public static final int abc_edit_text_material = 0x7f060012; + public static final int abc_ic_ab_back_material = 0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060014; + public static final int abc_ic_clear_material = 0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060016; + public static final int abc_ic_go_search_api_material = 0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f060019; + public static final int abc_ic_menu_overflow_material = 0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f06001d; + public static final int abc_ic_search_api_material = 0x7f06001e; + public static final int abc_ic_star_black_16dp = 0x7f06001f; + public static final int abc_ic_star_black_36dp = 0x7f060020; + public static final int abc_ic_star_black_48dp = 0x7f060021; + public static final int abc_ic_star_half_black_16dp = 0x7f060022; + public static final int abc_ic_star_half_black_36dp = 0x7f060023; + public static final int abc_ic_star_half_black_48dp = 0x7f060024; + public static final int abc_ic_voice_search_api_material = 0x7f060025; + public static final int abc_item_background_holo_dark = 0x7f060026; + public static final int abc_item_background_holo_light = 0x7f060027; + public static final int abc_list_divider_mtrl_alpha = 0x7f060028; + public static final int abc_list_focused_holo = 0x7f060029; + public static final int abc_list_longpressed_holo = 0x7f06002a; + public static final int abc_list_pressed_holo_dark = 0x7f06002b; + public static final int abc_list_pressed_holo_light = 0x7f06002c; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f06002d; + public static final int abc_list_selector_background_transition_holo_light = 0x7f06002e; + public static final int abc_list_selector_disabled_holo_dark = 0x7f06002f; + public static final int abc_list_selector_disabled_holo_light = 0x7f060030; + public static final int abc_list_selector_holo_dark = 0x7f060031; + public static final int abc_list_selector_holo_light = 0x7f060032; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060033; + public static final int abc_popup_background_mtrl_mult = 0x7f060034; + public static final int abc_ratingbar_indicator_material = 0x7f060035; + public static final int abc_ratingbar_material = 0x7f060036; + public static final int abc_ratingbar_small_material = 0x7f060037; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f060038; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003a; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003b; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f06003c; + public static final int abc_seekbar_thumb_material = 0x7f06003d; + public static final int abc_seekbar_tick_mark_material = 0x7f06003e; + public static final int abc_seekbar_track_material = 0x7f06003f; + public static final int abc_spinner_mtrl_am_alpha = 0x7f060040; + public static final int abc_spinner_textfield_background_material = 0x7f060041; + public static final int abc_switch_thumb_material = 0x7f060042; + public static final int abc_switch_track_mtrl_alpha = 0x7f060043; + public static final int abc_tab_indicator_material = 0x7f060044; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f060045; + public static final int abc_text_cursor_material = 0x7f060046; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f060047; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f060048; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004a; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f06004c; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f06004d; + public static final int abc_textfield_default_mtrl_alpha = 0x7f06004e; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f06004f; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060050; + public static final int abc_textfield_search_material = 0x7f060051; + public static final int abc_vector_test = 0x7f060052; + public static final int notification_action_background = 0x7f06007c; + public static final int notification_bg = 0x7f06007d; + public static final int notification_bg_low = 0x7f06007e; + public static final int notification_bg_low_normal = 0x7f06007f; + public static final int notification_bg_low_pressed = 0x7f060080; + public static final int notification_bg_normal = 0x7f060081; + public static final int notification_bg_normal_pressed = 0x7f060082; + public static final int notification_icon_background = 0x7f060083; + public static final int notification_template_icon_bg = 0x7f060084; + public static final int notification_template_icon_low_bg = 0x7f060085; + public static final int notification_tile_bg = 0x7f060086; + public static final int notify_panel_notification_icon_bg = 0x7f060087; + } + public static final class id { + private id() {} + + public static final int action0 = 0x7f070004; + public static final int action_bar = 0x7f070005; + public static final int action_bar_activity_content = 0x7f070006; + public static final int action_bar_container = 0x7f070007; + public static final int action_bar_root = 0x7f070008; + public static final int action_bar_spinner = 0x7f070009; + public static final int action_bar_subtitle = 0x7f07000a; + public static final int action_bar_title = 0x7f07000b; + public static final int action_container = 0x7f07000c; + public static final int action_context_bar = 0x7f07000d; + public static final int action_divider = 0x7f07000e; + public static final int action_image = 0x7f07000f; + public static final int action_menu_divider = 0x7f070010; + public static final int action_menu_presenter = 0x7f070011; + public static final int action_mode_bar = 0x7f070012; + public static final int action_mode_bar_stub = 0x7f070013; + public static final int action_mode_close_button = 0x7f070014; + public static final int action_text = 0x7f070015; + public static final int actions = 0x7f070016; + public static final int activity_chooser_view_content = 0x7f070017; + public static final int add = 0x7f070018; + public static final int alertTitle = 0x7f070019; + public static final int always = 0x7f07001a; + public static final int beginning = 0x7f07001b; + public static final int bottom = 0x7f07001c; + public static final int buttonPanel = 0x7f070022; + public static final int cancel_action = 0x7f070023; + public static final int checkbox = 0x7f070026; + public static final int chronometer = 0x7f070027; + public static final int collapseActionView = 0x7f070028; + public static final int contentPanel = 0x7f070029; + public static final int custom = 0x7f07002a; + public static final int customPanel = 0x7f07002b; + public static final int decor_content_parent = 0x7f07002c; + public static final int default_activity_button = 0x7f07002d; + public static final int disableHome = 0x7f070031; + public static final int edit_query = 0x7f070032; + public static final int end = 0x7f070033; + public static final int end_padder = 0x7f070034; + public static final int expand_activities_button = 0x7f07003a; + public static final int expanded_menu = 0x7f07003b; + public static final int home = 0x7f07003e; + public static final int homeAsUp = 0x7f07003f; + public static final int icon = 0x7f070041; + public static final int icon_group = 0x7f070042; + public static final int ifRoom = 0x7f070043; + public static final int image = 0x7f070044; + public static final int info = 0x7f070047; + public static final int line1 = 0x7f070048; + public static final int line3 = 0x7f070049; + public static final int listMode = 0x7f07004b; + public static final int list_item = 0x7f07004c; + public static final int media_actions = 0x7f07004f; + public static final int middle = 0x7f070050; + public static final int multiply = 0x7f070053; + public static final int never = 0x7f070054; + public static final int none = 0x7f070055; + public static final int normal = 0x7f070056; + public static final int notification_background = 0x7f070058; + public static final int notification_main_column = 0x7f070059; + public static final int notification_main_column_container = 0x7f07005a; + public static final int parentPanel = 0x7f07005b; + public static final int progress_circular = 0x7f07005d; + public static final int progress_horizontal = 0x7f07005e; + public static final int radio = 0x7f07005f; + public static final int right_icon = 0x7f070061; + public static final int right_side = 0x7f070062; + public static final int screen = 0x7f070063; + public static final int scrollIndicatorDown = 0x7f070064; + public static final int scrollIndicatorUp = 0x7f070065; + public static final int scrollView = 0x7f070066; + public static final int search_badge = 0x7f070067; + public static final int search_bar = 0x7f070068; + public static final int search_button = 0x7f070069; + public static final int search_close_btn = 0x7f07006a; + public static final int search_edit_frame = 0x7f07006b; + public static final int search_go_btn = 0x7f07006c; + public static final int search_mag_icon = 0x7f07006d; + public static final int search_plate = 0x7f07006e; + public static final int search_src_text = 0x7f07006f; + public static final int search_voice_btn = 0x7f070070; + public static final int select_dialog_listview = 0x7f070072; + public static final int shortcut = 0x7f070073; + public static final int showCustom = 0x7f070074; + public static final int showHome = 0x7f070075; + public static final int showTitle = 0x7f070076; + public static final int spacer = 0x7f070077; + public static final int split_action_bar = 0x7f070078; + public static final int src_atop = 0x7f070079; + public static final int src_in = 0x7f07007a; + public static final int src_over = 0x7f07007b; + public static final int status_bar_latest_event_content = 0x7f07007c; + public static final int submenuarrow = 0x7f07007d; + public static final int submit_area = 0x7f07007e; + public static final int tabMode = 0x7f07007f; + public static final int text = 0x7f070080; + public static final int text2 = 0x7f070081; + public static final int textSpacerNoButtons = 0x7f070082; + public static final int textSpacerNoTitle = 0x7f070083; + public static final int time = 0x7f070084; + public static final int title = 0x7f070085; + public static final int titleDividerNoCustom = 0x7f070086; + public static final int title_template = 0x7f070087; + public static final int top = 0x7f070088; + public static final int topPanel = 0x7f070089; + public static final int up = 0x7f070090; + public static final int useLogo = 0x7f070091; + public static final int withText = 0x7f0700a1; + public static final int wrap_content = 0x7f0700a2; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f080000; + public static final int abc_config_activityShortDur = 0x7f080001; + public static final int cancel_button_image_alpha = 0x7f080002; + public static final int status_bar_notification_info_maxnum = 0x7f080003; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f090000; + public static final int abc_action_bar_up_container = 0x7f090001; + public static final int abc_action_bar_view_list_nav_layout = 0x7f090002; + public static final int abc_action_menu_item_layout = 0x7f090003; + public static final int abc_action_menu_layout = 0x7f090004; + public static final int abc_action_mode_bar = 0x7f090005; + public static final int abc_action_mode_close_item_material = 0x7f090006; + public static final int abc_activity_chooser_view = 0x7f090007; + public static final int abc_activity_chooser_view_list_item = 0x7f090008; + public static final int abc_alert_dialog_button_bar_material = 0x7f090009; + public static final int abc_alert_dialog_material = 0x7f09000a; + public static final int abc_alert_dialog_title_material = 0x7f09000b; + public static final int abc_dialog_title_material = 0x7f09000c; + public static final int abc_expanded_menu_layout = 0x7f09000d; + public static final int abc_list_menu_item_checkbox = 0x7f09000e; + public static final int abc_list_menu_item_icon = 0x7f09000f; + public static final int abc_list_menu_item_layout = 0x7f090010; + public static final int abc_list_menu_item_radio = 0x7f090011; + public static final int abc_popup_menu_header_item_layout = 0x7f090012; + public static final int abc_popup_menu_item_layout = 0x7f090013; + public static final int abc_screen_content_include = 0x7f090014; + public static final int abc_screen_simple = 0x7f090015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f090016; + public static final int abc_screen_toolbar = 0x7f090017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f090018; + public static final int abc_search_view = 0x7f090019; + public static final int abc_select_dialog_material = 0x7f09001a; + public static final int notification_action = 0x7f090026; + public static final int notification_action_tombstone = 0x7f090027; + public static final int notification_media_action = 0x7f090028; + public static final int notification_media_cancel_action = 0x7f090029; + public static final int notification_template_big_media = 0x7f09002a; + public static final int notification_template_big_media_custom = 0x7f09002b; + public static final int notification_template_big_media_narrow = 0x7f09002c; + public static final int notification_template_big_media_narrow_custom = 0x7f09002d; + public static final int notification_template_custom_big = 0x7f09002e; + public static final int notification_template_icon_group = 0x7f09002f; + public static final int notification_template_lines_media = 0x7f090030; + public static final int notification_template_media = 0x7f090031; + public static final int notification_template_media_custom = 0x7f090032; + public static final int notification_template_part_chronometer = 0x7f090033; + public static final int notification_template_part_time = 0x7f090034; + public static final int select_dialog_item_material = 0x7f090035; + public static final int select_dialog_multichoice_material = 0x7f090036; + public static final int select_dialog_singlechoice_material = 0x7f090037; + public static final int support_simple_spinner_dropdown_item = 0x7f090039; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0c0002; + public static final int abc_action_bar_home_description_format = 0x7f0c0003; + public static final int abc_action_bar_home_subtitle_description_format = 0x7f0c0004; + public static final int abc_action_bar_up_description = 0x7f0c0005; + public static final int abc_action_menu_overflow_description = 0x7f0c0006; + public static final int abc_action_mode_done = 0x7f0c0007; + public static final int abc_activity_chooser_view_see_all = 0x7f0c0008; + public static final int abc_activitychooserview_choose_application = 0x7f0c0009; + public static final int abc_capital_off = 0x7f0c000a; + public static final int abc_capital_on = 0x7f0c000b; + public static final int abc_font_family_body_1_material = 0x7f0c000c; + public static final int abc_font_family_body_2_material = 0x7f0c000d; + public static final int abc_font_family_button_material = 0x7f0c000e; + public static final int abc_font_family_caption_material = 0x7f0c000f; + public static final int abc_font_family_display_1_material = 0x7f0c0010; + public static final int abc_font_family_display_2_material = 0x7f0c0011; + public static final int abc_font_family_display_3_material = 0x7f0c0012; + public static final int abc_font_family_display_4_material = 0x7f0c0013; + public static final int abc_font_family_headline_material = 0x7f0c0014; + public static final int abc_font_family_menu_material = 0x7f0c0015; + public static final int abc_font_family_subhead_material = 0x7f0c0016; + public static final int abc_font_family_title_material = 0x7f0c0017; + public static final int abc_search_hint = 0x7f0c0018; + public static final int abc_searchview_description_clear = 0x7f0c0019; + public static final int abc_searchview_description_query = 0x7f0c001a; + public static final int abc_searchview_description_search = 0x7f0c001b; + public static final int abc_searchview_description_submit = 0x7f0c001c; + public static final int abc_searchview_description_voice = 0x7f0c001d; + public static final int abc_shareactionprovider_share_with = 0x7f0c001e; + public static final int abc_shareactionprovider_share_with_application = 0x7f0c001f; + public static final int abc_toolbar_collapse_description = 0x7f0c0020; + public static final int search_menu_title = 0x7f0c0040; + public static final int status_bar_notification_info_overflow = 0x7f0c0049; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0d0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0d0001; + public static final int Animation_AppCompat_Dialog = 0x7f0d0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0d0003; + public static final int Base_AlertDialog_AppCompat = 0x7f0d0005; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0d0006; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0d0007; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0d0008; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0d000a; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0d0009; + public static final int Base_TextAppearance_AppCompat = 0x7f0d000b; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0d000c; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0d000d; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0d000e; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0d000f; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0d0010; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0d0011; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0d0012; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0d0013; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0d0014; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0d0015; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0d0016; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0d0017; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d0018; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d0019; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0d001a; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0d001b; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0d001c; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0d001d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d001e; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0d001f; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0d0020; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0d0021; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0d0022; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d0023; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0d0024; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0d0025; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d0026; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d0027; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d0028; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d002c; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0d002d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d002e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d002f; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d0030; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d0031; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d0032; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d0033; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d0034; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0d0035; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d0036; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d0037; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d0038; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d0039; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0d0048; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0d0049; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0d004a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d004b; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0d004c; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d004d; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0d004e; + public static final int Base_Theme_AppCompat = 0x7f0d003a; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0d003b; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0d003c; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0d0040; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0d003d; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0d003e; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0d003f; + public static final int Base_Theme_AppCompat_Light = 0x7f0d0041; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0d0042; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0d0043; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d0047; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0d0044; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0d0045; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d0046; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog = 0x7f0d0051; + public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0d004f; + public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0d0050; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0052; + public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0d0053; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0d0058; + public static final int Base_V21_Theme_AppCompat = 0x7f0d0054; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0d0055; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0d0056; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0d0057; + public static final int Base_V22_Theme_AppCompat = 0x7f0d0059; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0d005a; + public static final int Base_V23_Theme_AppCompat = 0x7f0d005b; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0d005c; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0d0061; + public static final int Base_V7_Theme_AppCompat = 0x7f0d005d; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0d005e; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0d005f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0d0060; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0062; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0d0063; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0d0064; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0d0065; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0d0066; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0d0067; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0d0068; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0d0069; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0d006a; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0d006b; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0d006c; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0d006d; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0d006e; + public static final int Base_Widget_AppCompat_Button = 0x7f0d006f; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0d0075; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d0076; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0d0070; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0071; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0072; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0d0073; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0d0074; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d0077; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d0078; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0d0079; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0d007a; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0d007b; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0d007c; + public static final int Base_Widget_AppCompat_EditText = 0x7f0d007d; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0d007e; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0d007f; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0080; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0081; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d0082; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d0083; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d0084; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0d0085; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0086; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0d0087; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0d0088; + public static final int Base_Widget_AppCompat_ListView = 0x7f0d0089; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0d008a; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0d008b; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0d008c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0d008d; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0d008e; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0d008f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0090; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0d0091; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0d0092; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0d0093; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0d0094; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0d0095; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0d0096; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0d0097; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0d0098; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0d0099; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0d009a; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0d009b; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d009c; + public static final int Platform_AppCompat = 0x7f0d009f; + public static final int Platform_AppCompat_Light = 0x7f0d00a0; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0d00a1; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0d00a2; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0d00a3; + public static final int Platform_V11_AppCompat = 0x7f0d00a4; + public static final int Platform_V11_AppCompat_Light = 0x7f0d00a5; + public static final int Platform_V14_AppCompat = 0x7f0d00a6; + public static final int Platform_V14_AppCompat_Light = 0x7f0d00a7; + public static final int Platform_V21_AppCompat = 0x7f0d00a8; + public static final int Platform_V21_AppCompat_Light = 0x7f0d00a9; + public static final int Platform_V25_AppCompat = 0x7f0d00aa; + public static final int Platform_V25_AppCompat_Light = 0x7f0d00ab; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0d00ac; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0d00ad; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0d00ae; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0d00af; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0d00b0; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0d00b1; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0d00b2; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0d00b8; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0d00b3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0d00b4; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0d00b5; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0d00b6; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0d00b7; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0d00b9; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0d00ba; + public static final int TextAppearance_AppCompat = 0x7f0d00bb; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0d00bc; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0d00bd; + public static final int TextAppearance_AppCompat_Button = 0x7f0d00be; + public static final int TextAppearance_AppCompat_Caption = 0x7f0d00bf; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0d00c0; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0d00c1; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0d00c2; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0d00c3; + public static final int TextAppearance_AppCompat_Headline = 0x7f0d00c4; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0d00c5; + public static final int TextAppearance_AppCompat_Large = 0x7f0d00c6; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0d00c7; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0d00c8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0d00c9; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d00ca; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d00cb; + public static final int TextAppearance_AppCompat_Medium = 0x7f0d00cc; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0d00cd; + public static final int TextAppearance_AppCompat_Menu = 0x7f0d00ce; + public static final int TextAppearance_AppCompat_Notification = 0x7f0d00cf; + public static final int TextAppearance_AppCompat_Notification_Info = 0x7f0d00d0; + public static final int TextAppearance_AppCompat_Notification_Info_Media = 0x7f0d00d1; + public static final int TextAppearance_AppCompat_Notification_Line2 = 0x7f0d00d2; + public static final int TextAppearance_AppCompat_Notification_Line2_Media = 0x7f0d00d3; + public static final int TextAppearance_AppCompat_Notification_Media = 0x7f0d00d4; + public static final int TextAppearance_AppCompat_Notification_Time = 0x7f0d00d5; + public static final int TextAppearance_AppCompat_Notification_Time_Media = 0x7f0d00d6; + public static final int TextAppearance_AppCompat_Notification_Title = 0x7f0d00d7; + public static final int TextAppearance_AppCompat_Notification_Title_Media = 0x7f0d00d8; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d00d9; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0d00da; + public static final int TextAppearance_AppCompat_Small = 0x7f0d00db; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0d00dc; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0d00dd; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d00de; + public static final int TextAppearance_AppCompat_Title = 0x7f0d00df; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0d00e0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d00e1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d00e2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d00e5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d00e6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0d00e7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0d00e9; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0d00ea; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d00eb; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d00ec; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d00ed; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d00ee; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d00ef; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d00f0; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d00f1; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0d00f2; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d00f3; + public static final int TextAppearance_StatusBar_EventContent = 0x7f0d00f4; + public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0d00f5; + public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0d00f6; + public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0d00f7; + public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0d00f8; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d00f9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d00fa; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d00fb; + public static final int ThemeOverlay_AppCompat = 0x7f0d0111; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0d0112; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0d0113; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d0114; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0d0115; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d0116; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0d0117; + public static final int Theme_AppCompat = 0x7f0d00fc; + public static final int Theme_AppCompat_CompactMenu = 0x7f0d00fd; + public static final int Theme_AppCompat_DayNight = 0x7f0d00fe; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0d00ff; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0d0100; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0d0103; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0d0101; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0d0102; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0d0104; + public static final int Theme_AppCompat_Dialog = 0x7f0d0105; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0d0108; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0d0106; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0d0107; + public static final int Theme_AppCompat_Light = 0x7f0d0109; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0d010a; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0d010b; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d010e; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0d010c; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d010d; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0d010f; + public static final int Theme_AppCompat_NoActionBar = 0x7f0d0110; + public static final int Widget_AppCompat_ActionBar = 0x7f0d011b; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0d011c; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0d011d; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0d011e; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0d011f; + public static final int Widget_AppCompat_ActionButton = 0x7f0d0120; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0d0121; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0d0122; + public static final int Widget_AppCompat_ActionMode = 0x7f0d0123; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0d0124; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0d0125; + public static final int Widget_AppCompat_Button = 0x7f0d0126; + public static final int Widget_AppCompat_ButtonBar = 0x7f0d012c; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d012d; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0d0127; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0128; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0129; + public static final int Widget_AppCompat_Button_Colored = 0x7f0d012a; + public static final int Widget_AppCompat_Button_Small = 0x7f0d012b; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d012e; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d012f; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0d0130; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0d0131; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0d0132; + public static final int Widget_AppCompat_EditText = 0x7f0d0133; + public static final int Widget_AppCompat_ImageButton = 0x7f0d0134; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0d0135; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0136; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0d0137; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0138; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0d0139; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d013a; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d013b; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d013c; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0d013d; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0d013e; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0d013f; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0d0140; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0d0141; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0d0142; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0d0143; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0d0144; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0d0145; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0d0146; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0d0147; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0148; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0d0149; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0d014a; + public static final int Widget_AppCompat_ListMenuView = 0x7f0d014b; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0d014c; + public static final int Widget_AppCompat_ListView = 0x7f0d014d; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0d014e; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0d014f; + public static final int Widget_AppCompat_NotificationActionContainer = 0x7f0d0150; + public static final int Widget_AppCompat_NotificationActionText = 0x7f0d0151; + public static final int Widget_AppCompat_PopupMenu = 0x7f0d0152; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0d0153; + public static final int Widget_AppCompat_PopupWindow = 0x7f0d0154; + public static final int Widget_AppCompat_ProgressBar = 0x7f0d0155; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0156; + public static final int Widget_AppCompat_RatingBar = 0x7f0d0157; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0d0158; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0d0159; + public static final int Widget_AppCompat_SearchView = 0x7f0d015a; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0d015b; + public static final int Widget_AppCompat_SeekBar = 0x7f0d015c; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0d015d; + public static final int Widget_AppCompat_Spinner = 0x7f0d015e; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0d015f; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0d0160; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0d0161; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0d0162; + public static final int Widget_AppCompat_Toolbar = 0x7f0d0163; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d0164; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f02002b, 0x7f02002c, 0x7f02002d, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020056, 0x7f02005a, 0x7f02005b, 0x7f020066, 0x7f02006a, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02006e, 0x7f020071, 0x7f020074, 0x7f020081, 0x7f02008a, 0x7f020094, 0x7f020097, 0x7f020098, 0x7f0200b4, 0x7f0200b7, 0x7f0200d0, 0x7f0200d9 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f02002b, 0x7f02002c, 0x7f020041, 0x7f02006a, 0x7f0200b7, 0x7f0200d9 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f020067, 0x7f020072 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f020039, 0x7f020078, 0x7f020079, 0x7f020087, 0x7f0200a9, 0x7f0200aa }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonPanelSideLayout = 1; + public static final int AlertDialog_listItemLayout = 2; + public static final int AlertDialog_listLayout = 3; + public static final int AlertDialog_multiChoiceItemLayout = 4; + public static final int AlertDialog_showTitle = 5; + public static final int AlertDialog_singleChoiceItemLayout = 6; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f0200b0 }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f0200bd }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_textAllCaps = 1; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002a, 0x7f020032, 0x7f020033, 0x7f020034, 0x7f020035, 0x7f020036, 0x7f020037, 0x7f02003a, 0x7f02003b, 0x7f02003e, 0x7f02003f, 0x7f020045, 0x7f020046, 0x7f020047, 0x7f020048, 0x7f020049, 0x7f02004a, 0x7f02004b, 0x7f02004c, 0x7f02004d, 0x7f020055, 0x7f020058, 0x7f020059, 0x7f02005c, 0x7f02005e, 0x7f020061, 0x7f020062, 0x7f020063, 0x7f020064, 0x7f020065, 0x7f02006c, 0x7f020070, 0x7f020076, 0x7f020077, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020095, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200ac, 0x7f0200ad, 0x7f0200bb, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200da, 0x7f0200db, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e3, 0x7f0200e4, 0x7f0200e5, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9 }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorPrimary = 54; + public static final int AppCompatTheme_colorPrimaryDark = 55; + public static final int AppCompatTheme_colorSwitchThumbNormal = 56; + public static final int AppCompatTheme_controlBackground = 57; + public static final int AppCompatTheme_dialogPreferredPadding = 58; + public static final int AppCompatTheme_dialogTheme = 59; + public static final int AppCompatTheme_dividerHorizontal = 60; + public static final int AppCompatTheme_dividerVertical = 61; + public static final int AppCompatTheme_dropDownListViewStyle = 62; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 63; + public static final int AppCompatTheme_editTextBackground = 64; + public static final int AppCompatTheme_editTextColor = 65; + public static final int AppCompatTheme_editTextStyle = 66; + public static final int AppCompatTheme_homeAsUpIndicator = 67; + public static final int AppCompatTheme_imageButtonStyle = 68; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 69; + public static final int AppCompatTheme_listDividerAlertDialog = 70; + public static final int AppCompatTheme_listMenuViewStyle = 71; + public static final int AppCompatTheme_listPopupWindowStyle = 72; + public static final int AppCompatTheme_listPreferredItemHeight = 73; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 74; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 75; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 76; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 77; + public static final int AppCompatTheme_panelBackground = 78; + public static final int AppCompatTheme_panelMenuListTheme = 79; + public static final int AppCompatTheme_panelMenuListWidth = 80; + public static final int AppCompatTheme_popupMenuStyle = 81; + public static final int AppCompatTheme_popupWindowStyle = 82; + public static final int AppCompatTheme_radioButtonStyle = 83; + public static final int AppCompatTheme_ratingBarStyle = 84; + public static final int AppCompatTheme_ratingBarStyleIndicator = 85; + public static final int AppCompatTheme_ratingBarStyleSmall = 86; + public static final int AppCompatTheme_searchViewStyle = 87; + public static final int AppCompatTheme_seekBarStyle = 88; + public static final int AppCompatTheme_selectableItemBackground = 89; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 90; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 91; + public static final int AppCompatTheme_spinnerStyle = 92; + public static final int AppCompatTheme_switchStyle = 93; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 94; + public static final int AppCompatTheme_textAppearanceListItem = 95; + public static final int AppCompatTheme_textAppearanceListItemSmall = 96; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 97; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 98; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 99; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 100; + public static final int AppCompatTheme_textColorAlertDialogListItem = 101; + public static final int AppCompatTheme_textColorSearchUrl = 102; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 103; + public static final int AppCompatTheme_toolbarStyle = 104; + public static final int AppCompatTheme_windowActionBar = 105; + public static final int AppCompatTheme_windowActionBarOverlay = 106; + public static final int AppCompatTheme_windowActionModeOverlay = 107; + public static final int AppCompatTheme_windowFixedHeightMajor = 108; + public static final int AppCompatTheme_windowFixedHeightMinor = 109; + public static final int AppCompatTheme_windowFixedWidthMajor = 110; + public static final int AppCompatTheme_windowFixedWidthMinor = 111; + public static final int AppCompatTheme_windowMinWidthMajor = 112; + public static final int AppCompatTheme_windowMinWidthMinor = 113; + public static final int AppCompatTheme_windowNoTitle = 114; + public static final int[] ButtonBarLayout = { 0x7f020026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f02003c, 0x7f02003d }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] DrawerArrowToggle = { 0x7f020028, 0x7f020029, 0x7f020030, 0x7f020044, 0x7f02005f, 0x7f020068, 0x7f0200ab, 0x7f0200c8 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f02005b, 0x7f02005d, 0x7f020085, 0x7f0200a7 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f0200a6 }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_showAsAction = 16; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f020096, 0x7f0200b2 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f02008b }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f0200b1 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f02008c, 0x7f02008f }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f020040, 0x7f02004e, 0x7f020057, 0x7f020069, 0x7f02006f, 0x7f020075, 0x7f02009a, 0x7f02009b, 0x7f0200a0, 0x7f0200a1, 0x7f0200b3, 0x7f0200b8, 0x7f0200df }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f020094 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f0200a8, 0x7f0200ae, 0x7f0200b9, 0x7f0200ba, 0x7f0200bc, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200dc, 0x7f0200dd, 0x7f0200de }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x7f0200bd }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_shadowColor = 5; + public static final int TextAppearance_android_shadowDx = 6; + public static final int TextAppearance_android_shadowDy = 7; + public static final int TextAppearance_android_shadowRadius = 8; + public static final int TextAppearance_textAllCaps = 9; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f020038, 0x7f020042, 0x7f020043, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020081, 0x7f020082, 0x7f020083, 0x7f020088, 0x7f020089, 0x7f020094, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f02008d, 0x7f02008e, 0x7f0200c7 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f02002e, 0x7f02002f }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/example/cdc4512/vertifydemo/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/example/cdc4512/vertifydemo/R.java new file mode 100644 index 0000000..b8d18a3 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/example/cdc4512/vertifydemo/R.java @@ -0,0 +1,1534 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.example.cdc4512.vertifydemo; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f020000; + public static final int actionBarItemBackground = 0x7f020001; + public static final int actionBarPopupTheme = 0x7f020002; + public static final int actionBarSize = 0x7f020003; + public static final int actionBarSplitStyle = 0x7f020004; + public static final int actionBarStyle = 0x7f020005; + public static final int actionBarTabBarStyle = 0x7f020006; + public static final int actionBarTabStyle = 0x7f020007; + public static final int actionBarTabTextStyle = 0x7f020008; + public static final int actionBarTheme = 0x7f020009; + public static final int actionBarWidgetTheme = 0x7f02000a; + public static final int actionButtonStyle = 0x7f02000b; + public static final int actionDropDownStyle = 0x7f02000c; + public static final int actionLayout = 0x7f02000d; + public static final int actionMenuTextAppearance = 0x7f02000e; + public static final int actionMenuTextColor = 0x7f02000f; + public static final int actionModeBackground = 0x7f020010; + public static final int actionModeCloseButtonStyle = 0x7f020011; + public static final int actionModeCloseDrawable = 0x7f020012; + public static final int actionModeCopyDrawable = 0x7f020013; + public static final int actionModeCutDrawable = 0x7f020014; + public static final int actionModeFindDrawable = 0x7f020015; + public static final int actionModePasteDrawable = 0x7f020016; + public static final int actionModePopupWindowStyle = 0x7f020017; + public static final int actionModeSelectAllDrawable = 0x7f020018; + public static final int actionModeShareDrawable = 0x7f020019; + public static final int actionModeSplitBackground = 0x7f02001a; + public static final int actionModeStyle = 0x7f02001b; + public static final int actionModeWebSearchDrawable = 0x7f02001c; + public static final int actionOverflowButtonStyle = 0x7f02001d; + public static final int actionOverflowMenuStyle = 0x7f02001e; + public static final int actionProviderClass = 0x7f02001f; + public static final int actionViewClass = 0x7f020020; + public static final int activityChooserViewStyle = 0x7f020021; + public static final int alertDialogButtonGroupStyle = 0x7f020022; + public static final int alertDialogCenterButtons = 0x7f020023; + public static final int alertDialogStyle = 0x7f020024; + public static final int alertDialogTheme = 0x7f020025; + public static final int allowStacking = 0x7f020026; + public static final int alpha = 0x7f020027; + public static final int arrowHeadLength = 0x7f020028; + public static final int arrowShaftLength = 0x7f020029; + public static final int autoCompleteTextViewStyle = 0x7f02002a; + public static final int background = 0x7f02002b; + public static final int backgroundSplit = 0x7f02002c; + public static final int backgroundStacked = 0x7f02002d; + public static final int backgroundTint = 0x7f02002e; + public static final int backgroundTintMode = 0x7f02002f; + public static final int barLength = 0x7f020030; + public static final int blockSize = 0x7f020031; + public static final int borderlessButtonStyle = 0x7f020032; + public static final int buttonBarButtonStyle = 0x7f020033; + public static final int buttonBarNegativeButtonStyle = 0x7f020034; + public static final int buttonBarNeutralButtonStyle = 0x7f020035; + public static final int buttonBarPositiveButtonStyle = 0x7f020036; + public static final int buttonBarStyle = 0x7f020037; + public static final int buttonGravity = 0x7f020038; + public static final int buttonPanelSideLayout = 0x7f020039; + public static final int buttonStyle = 0x7f02003a; + public static final int buttonStyleSmall = 0x7f02003b; + public static final int buttonTint = 0x7f02003c; + public static final int buttonTintMode = 0x7f02003d; + public static final int checkboxStyle = 0x7f02003e; + public static final int checkedTextViewStyle = 0x7f02003f; + public static final int closeIcon = 0x7f020040; + public static final int closeItemLayout = 0x7f020041; + public static final int collapseContentDescription = 0x7f020042; + public static final int collapseIcon = 0x7f020043; + public static final int color = 0x7f020044; + public static final int colorAccent = 0x7f020045; + public static final int colorBackgroundFloating = 0x7f020046; + public static final int colorButtonNormal = 0x7f020047; + public static final int colorControlActivated = 0x7f020048; + public static final int colorControlHighlight = 0x7f020049; + public static final int colorControlNormal = 0x7f02004a; + public static final int colorPrimary = 0x7f02004b; + public static final int colorPrimaryDark = 0x7f02004c; + public static final int colorSwitchThumbNormal = 0x7f02004d; + public static final int commitIcon = 0x7f02004e; + public static final int contentInsetEnd = 0x7f02004f; + public static final int contentInsetEndWithActions = 0x7f020050; + public static final int contentInsetLeft = 0x7f020051; + public static final int contentInsetRight = 0x7f020052; + public static final int contentInsetStart = 0x7f020053; + public static final int contentInsetStartWithNavigation = 0x7f020054; + public static final int controlBackground = 0x7f020055; + public static final int customNavigationLayout = 0x7f020056; + public static final int defaultQueryHint = 0x7f020057; + public static final int dialogPreferredPadding = 0x7f020058; + public static final int dialogTheme = 0x7f020059; + public static final int displayOptions = 0x7f02005a; + public static final int divider = 0x7f02005b; + public static final int dividerHorizontal = 0x7f02005c; + public static final int dividerPadding = 0x7f02005d; + public static final int dividerVertical = 0x7f02005e; + public static final int drawableSize = 0x7f02005f; + public static final int drawerArrowStyle = 0x7f020060; + public static final int dropDownListViewStyle = 0x7f020061; + public static final int dropdownListPreferredItemHeight = 0x7f020062; + public static final int editTextBackground = 0x7f020063; + public static final int editTextColor = 0x7f020064; + public static final int editTextStyle = 0x7f020065; + public static final int elevation = 0x7f020066; + public static final int expandActivityOverflowButtonDrawable = 0x7f020067; + public static final int gapBetweenBars = 0x7f020068; + public static final int goIcon = 0x7f020069; + public static final int height = 0x7f02006a; + public static final int hideOnContentScroll = 0x7f02006b; + public static final int homeAsUpIndicator = 0x7f02006c; + public static final int homeLayout = 0x7f02006d; + public static final int icon = 0x7f02006e; + public static final int iconifiedByDefault = 0x7f02006f; + public static final int imageButtonStyle = 0x7f020070; + public static final int indeterminateProgressStyle = 0x7f020071; + public static final int initialActivityCount = 0x7f020072; + public static final int isLightTheme = 0x7f020073; + public static final int itemPadding = 0x7f020074; + public static final int layout = 0x7f020075; + public static final int listChoiceBackgroundIndicator = 0x7f020076; + public static final int listDividerAlertDialog = 0x7f020077; + public static final int listItemLayout = 0x7f020078; + public static final int listLayout = 0x7f020079; + public static final int listMenuViewStyle = 0x7f02007a; + public static final int listPopupWindowStyle = 0x7f02007b; + public static final int listPreferredItemHeight = 0x7f02007c; + public static final int listPreferredItemHeightLarge = 0x7f02007d; + public static final int listPreferredItemHeightSmall = 0x7f02007e; + public static final int listPreferredItemPaddingLeft = 0x7f02007f; + public static final int listPreferredItemPaddingRight = 0x7f020080; + public static final int logo = 0x7f020081; + public static final int logoDescription = 0x7f020082; + public static final int maxButtonHeight = 0x7f020083; + public static final int max_fail_count = 0x7f020084; + public static final int measureWithLargestChild = 0x7f020085; + public static final int mode = 0x7f020086; + public static final int multiChoiceItemLayout = 0x7f020087; + public static final int navigationContentDescription = 0x7f020088; + public static final int navigationIcon = 0x7f020089; + public static final int navigationMode = 0x7f02008a; + public static final int overlapAnchor = 0x7f02008b; + public static final int paddingBottomNoButtons = 0x7f02008c; + public static final int paddingEnd = 0x7f02008d; + public static final int paddingStart = 0x7f02008e; + public static final int paddingTopNoTitle = 0x7f02008f; + public static final int panelBackground = 0x7f020090; + public static final int panelMenuListTheme = 0x7f020091; + public static final int panelMenuListWidth = 0x7f020092; + public static final int popupMenuStyle = 0x7f020093; + public static final int popupTheme = 0x7f020094; + public static final int popupWindowStyle = 0x7f020095; + public static final int preserveIconSpacing = 0x7f020096; + public static final int progressBarPadding = 0x7f020097; + public static final int progressBarStyle = 0x7f020098; + public static final int progressDrawable = 0x7f020099; + public static final int queryBackground = 0x7f02009a; + public static final int queryHint = 0x7f02009b; + public static final int radioButtonStyle = 0x7f02009c; + public static final int ratingBarStyle = 0x7f02009d; + public static final int ratingBarStyleIndicator = 0x7f02009e; + public static final int ratingBarStyleSmall = 0x7f02009f; + public static final int searchHintIcon = 0x7f0200a0; + public static final int searchIcon = 0x7f0200a1; + public static final int searchViewStyle = 0x7f0200a2; + public static final int seekBarStyle = 0x7f0200a3; + public static final int selectableItemBackground = 0x7f0200a4; + public static final int selectableItemBackgroundBorderless = 0x7f0200a5; + public static final int showAsAction = 0x7f0200a6; + public static final int showDividers = 0x7f0200a7; + public static final int showText = 0x7f0200a8; + public static final int showTitle = 0x7f0200a9; + public static final int singleChoiceItemLayout = 0x7f0200aa; + public static final int spinBars = 0x7f0200ab; + public static final int spinnerDropDownItemStyle = 0x7f0200ac; + public static final int spinnerStyle = 0x7f0200ad; + public static final int splitTrack = 0x7f0200ae; + public static final int src = 0x7f0200af; + public static final int srcCompat = 0x7f0200b0; + public static final int state_above_anchor = 0x7f0200b1; + public static final int subMenuArrow = 0x7f0200b2; + public static final int submitBackground = 0x7f0200b3; + public static final int subtitle = 0x7f0200b4; + public static final int subtitleTextAppearance = 0x7f0200b5; + public static final int subtitleTextColor = 0x7f0200b6; + public static final int subtitleTextStyle = 0x7f0200b7; + public static final int suggestionRowLayout = 0x7f0200b8; + public static final int switchMinWidth = 0x7f0200b9; + public static final int switchPadding = 0x7f0200ba; + public static final int switchStyle = 0x7f0200bb; + public static final int switchTextAppearance = 0x7f0200bc; + public static final int textAllCaps = 0x7f0200bd; + public static final int textAppearanceLargePopupMenu = 0x7f0200be; + public static final int textAppearanceListItem = 0x7f0200bf; + public static final int textAppearanceListItemSmall = 0x7f0200c0; + public static final int textAppearancePopupMenuHeader = 0x7f0200c1; + public static final int textAppearanceSearchResultSubtitle = 0x7f0200c2; + public static final int textAppearanceSearchResultTitle = 0x7f0200c3; + public static final int textAppearanceSmallPopupMenu = 0x7f0200c4; + public static final int textColorAlertDialogListItem = 0x7f0200c5; + public static final int textColorSearchUrl = 0x7f0200c6; + public static final int theme = 0x7f0200c7; + public static final int thickness = 0x7f0200c8; + public static final int thumbDrawable = 0x7f0200c9; + public static final int thumbTextPadding = 0x7f0200ca; + public static final int thumbTint = 0x7f0200cb; + public static final int thumbTintMode = 0x7f0200cc; + public static final int tickMark = 0x7f0200cd; + public static final int tickMarkTint = 0x7f0200ce; + public static final int tickMarkTintMode = 0x7f0200cf; + public static final int title = 0x7f0200d0; + public static final int titleMargin = 0x7f0200d1; + public static final int titleMarginBottom = 0x7f0200d2; + public static final int titleMarginEnd = 0x7f0200d3; + public static final int titleMarginStart = 0x7f0200d4; + public static final int titleMarginTop = 0x7f0200d5; + public static final int titleMargins = 0x7f0200d6; + public static final int titleTextAppearance = 0x7f0200d7; + public static final int titleTextColor = 0x7f0200d8; + public static final int titleTextStyle = 0x7f0200d9; + public static final int toolbarNavigationButtonStyle = 0x7f0200da; + public static final int toolbarStyle = 0x7f0200db; + public static final int track = 0x7f0200dc; + public static final int trackTint = 0x7f0200dd; + public static final int trackTintMode = 0x7f0200de; + public static final int voiceIcon = 0x7f0200df; + public static final int windowActionBar = 0x7f0200e0; + public static final int windowActionBarOverlay = 0x7f0200e1; + public static final int windowActionModeOverlay = 0x7f0200e2; + public static final int windowFixedHeightMajor = 0x7f0200e3; + public static final int windowFixedHeightMinor = 0x7f0200e4; + public static final int windowFixedWidthMajor = 0x7f0200e5; + public static final int windowFixedWidthMinor = 0x7f0200e6; + public static final int windowMinWidthMajor = 0x7f0200e7; + public static final int windowMinWidthMinor = 0x7f0200e8; + public static final int windowNoTitle = 0x7f0200e9; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f030000; + public static final int abc_allow_stacked_button_bar = 0x7f030001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f030002; + public static final int abc_config_closeDialogWhenTouchOutside = 0x7f030003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f030004; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f040001; + public static final int abc_btn_colored_borderless_text_material = 0x7f040002; + public static final int abc_btn_colored_text_material = 0x7f040003; + public static final int abc_color_highlight_material = 0x7f040004; + public static final int abc_hint_foreground_material_dark = 0x7f040005; + public static final int abc_hint_foreground_material_light = 0x7f040006; + public static final int abc_input_method_navigation_guard = 0x7f040007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f040008; + public static final int abc_primary_text_disable_only_material_light = 0x7f040009; + public static final int abc_primary_text_material_dark = 0x7f04000a; + public static final int abc_primary_text_material_light = 0x7f04000b; + public static final int abc_search_url_text = 0x7f04000c; + public static final int abc_search_url_text_normal = 0x7f04000d; + public static final int abc_search_url_text_pressed = 0x7f04000e; + public static final int abc_search_url_text_selected = 0x7f04000f; + public static final int abc_secondary_text_material_dark = 0x7f040010; + public static final int abc_secondary_text_material_light = 0x7f040011; + public static final int abc_tint_btn_checkable = 0x7f040012; + public static final int abc_tint_default = 0x7f040013; + public static final int abc_tint_edittext = 0x7f040014; + public static final int abc_tint_seek_thumb = 0x7f040015; + public static final int abc_tint_spinner = 0x7f040016; + public static final int abc_tint_switch_thumb = 0x7f040017; + public static final int abc_tint_switch_track = 0x7f040018; + public static final int accent_material_dark = 0x7f040019; + public static final int accent_material_light = 0x7f04001a; + public static final int background_floating_material_dark = 0x7f04001b; + public static final int background_floating_material_light = 0x7f04001c; + public static final int background_material_dark = 0x7f04001d; + public static final int background_material_light = 0x7f04001e; + public static final int bright_foreground_disabled_material_dark = 0x7f040020; + public static final int bright_foreground_disabled_material_light = 0x7f040021; + public static final int bright_foreground_inverse_material_dark = 0x7f040022; + public static final int bright_foreground_inverse_material_light = 0x7f040023; + public static final int bright_foreground_material_dark = 0x7f040024; + public static final int bright_foreground_material_light = 0x7f040025; + public static final int button_material_dark = 0x7f040026; + public static final int button_material_light = 0x7f040027; + public static final int colorAccent = 0x7f040028; + public static final int colorPrimary = 0x7f040029; + public static final int colorPrimaryDark = 0x7f04002a; + public static final int dim_foreground_disabled_material_dark = 0x7f04002b; + public static final int dim_foreground_disabled_material_light = 0x7f04002c; + public static final int dim_foreground_material_dark = 0x7f04002d; + public static final int dim_foreground_material_light = 0x7f04002e; + public static final int foreground_material_dark = 0x7f04002f; + public static final int foreground_material_light = 0x7f040030; + public static final int highlighted_text_material_dark = 0x7f040031; + public static final int highlighted_text_material_light = 0x7f040032; + public static final int material_blue_grey_800 = 0x7f040033; + public static final int material_blue_grey_900 = 0x7f040034; + public static final int material_blue_grey_950 = 0x7f040035; + public static final int material_deep_teal_200 = 0x7f040036; + public static final int material_deep_teal_500 = 0x7f040037; + public static final int material_grey_100 = 0x7f040038; + public static final int material_grey_300 = 0x7f040039; + public static final int material_grey_50 = 0x7f04003a; + public static final int material_grey_600 = 0x7f04003b; + public static final int material_grey_800 = 0x7f04003c; + public static final int material_grey_850 = 0x7f04003d; + public static final int material_grey_900 = 0x7f04003e; + public static final int notification_action_color_filter = 0x7f04003f; + public static final int notification_icon_bg_color = 0x7f040040; + public static final int notification_material_background_media_default_color = 0x7f040041; + public static final int primary_dark_material_dark = 0x7f040042; + public static final int primary_dark_material_light = 0x7f040043; + public static final int primary_material_dark = 0x7f040044; + public static final int primary_material_light = 0x7f040045; + public static final int primary_text_default_material_dark = 0x7f040046; + public static final int primary_text_default_material_light = 0x7f040047; + public static final int primary_text_disabled_material_dark = 0x7f040048; + public static final int primary_text_disabled_material_light = 0x7f040049; + public static final int ripple_material_dark = 0x7f04004a; + public static final int ripple_material_light = 0x7f04004b; + public static final int secondary_text_default_material_dark = 0x7f04004c; + public static final int secondary_text_default_material_light = 0x7f04004d; + public static final int secondary_text_disabled_material_dark = 0x7f04004e; + public static final int secondary_text_disabled_material_light = 0x7f04004f; + public static final int switch_thumb_disabled_material_dark = 0x7f040050; + public static final int switch_thumb_disabled_material_light = 0x7f040051; + public static final int switch_thumb_material_dark = 0x7f040052; + public static final int switch_thumb_material_light = 0x7f040053; + public static final int switch_thumb_normal_material_dark = 0x7f040054; + public static final int switch_thumb_normal_material_light = 0x7f040055; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f050000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f050001; + public static final int abc_action_bar_default_height_material = 0x7f050002; + public static final int abc_action_bar_default_padding_end_material = 0x7f050003; + public static final int abc_action_bar_default_padding_start_material = 0x7f050004; + public static final int abc_action_bar_elevation_material = 0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008; + public static final int abc_action_bar_progress_bar_size = 0x7f050009; + public static final int abc_action_bar_stacked_max_height = 0x7f05000a; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000b; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000c; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000d; + public static final int abc_action_button_min_height_material = 0x7f05000e; + public static final int abc_action_button_min_width_material = 0x7f05000f; + public static final int abc_action_button_min_width_overflow_material = 0x7f050010; + public static final int abc_alert_dialog_button_bar_height = 0x7f050011; + public static final int abc_button_inset_horizontal_material = 0x7f050012; + public static final int abc_button_inset_vertical_material = 0x7f050013; + public static final int abc_button_padding_horizontal_material = 0x7f050014; + public static final int abc_button_padding_vertical_material = 0x7f050015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f050016; + public static final int abc_config_prefDialogWidth = 0x7f050017; + public static final int abc_control_corner_material = 0x7f050018; + public static final int abc_control_inset_material = 0x7f050019; + public static final int abc_control_padding_material = 0x7f05001a; + public static final int abc_dialog_fixed_height_major = 0x7f05001b; + public static final int abc_dialog_fixed_height_minor = 0x7f05001c; + public static final int abc_dialog_fixed_width_major = 0x7f05001d; + public static final int abc_dialog_fixed_width_minor = 0x7f05001e; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f05001f; + public static final int abc_dialog_list_padding_top_no_title = 0x7f050020; + public static final int abc_dialog_min_width_major = 0x7f050021; + public static final int abc_dialog_min_width_minor = 0x7f050022; + public static final int abc_dialog_padding_material = 0x7f050023; + public static final int abc_dialog_padding_top_material = 0x7f050024; + public static final int abc_dialog_title_divider_material = 0x7f050025; + public static final int abc_disabled_alpha_material_dark = 0x7f050026; + public static final int abc_disabled_alpha_material_light = 0x7f050027; + public static final int abc_dropdownitem_icon_width = 0x7f050028; + public static final int abc_dropdownitem_text_padding_left = 0x7f050029; + public static final int abc_dropdownitem_text_padding_right = 0x7f05002a; + public static final int abc_edit_text_inset_bottom_material = 0x7f05002b; + public static final int abc_edit_text_inset_horizontal_material = 0x7f05002c; + public static final int abc_edit_text_inset_top_material = 0x7f05002d; + public static final int abc_floating_window_z = 0x7f05002e; + public static final int abc_list_item_padding_horizontal_material = 0x7f05002f; + public static final int abc_panel_menu_list_width = 0x7f050030; + public static final int abc_progress_bar_height_material = 0x7f050031; + public static final int abc_search_view_preferred_height = 0x7f050032; + public static final int abc_search_view_preferred_width = 0x7f050033; + public static final int abc_seekbar_track_background_height_material = 0x7f050034; + public static final int abc_seekbar_track_progress_height_material = 0x7f050035; + public static final int abc_select_dialog_padding_start_material = 0x7f050036; + public static final int abc_switch_padding = 0x7f050037; + public static final int abc_text_size_body_1_material = 0x7f050038; + public static final int abc_text_size_body_2_material = 0x7f050039; + public static final int abc_text_size_button_material = 0x7f05003a; + public static final int abc_text_size_caption_material = 0x7f05003b; + public static final int abc_text_size_display_1_material = 0x7f05003c; + public static final int abc_text_size_display_2_material = 0x7f05003d; + public static final int abc_text_size_display_3_material = 0x7f05003e; + public static final int abc_text_size_display_4_material = 0x7f05003f; + public static final int abc_text_size_headline_material = 0x7f050040; + public static final int abc_text_size_large_material = 0x7f050041; + public static final int abc_text_size_medium_material = 0x7f050042; + public static final int abc_text_size_menu_header_material = 0x7f050043; + public static final int abc_text_size_menu_material = 0x7f050044; + public static final int abc_text_size_small_material = 0x7f050045; + public static final int abc_text_size_subhead_material = 0x7f050046; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f050047; + public static final int abc_text_size_title_material = 0x7f050048; + public static final int abc_text_size_title_material_toolbar = 0x7f050049; + public static final int disabled_alpha_material_dark = 0x7f05004a; + public static final int disabled_alpha_material_light = 0x7f05004b; + public static final int highlight_alpha_material_colored = 0x7f05004c; + public static final int highlight_alpha_material_dark = 0x7f05004d; + public static final int highlight_alpha_material_light = 0x7f05004e; + public static final int hint_alpha_material_dark = 0x7f05004f; + public static final int hint_alpha_material_light = 0x7f050050; + public static final int hint_pressed_alpha_material_dark = 0x7f050051; + public static final int hint_pressed_alpha_material_light = 0x7f050052; + public static final int notification_action_icon_size = 0x7f050053; + public static final int notification_action_text_size = 0x7f050054; + public static final int notification_big_circle_margin = 0x7f050055; + public static final int notification_content_margin_start = 0x7f050056; + public static final int notification_large_icon_height = 0x7f050057; + public static final int notification_large_icon_width = 0x7f050058; + public static final int notification_main_column_padding_top = 0x7f050059; + public static final int notification_media_narrow_margin = 0x7f05005a; + public static final int notification_right_icon_size = 0x7f05005b; + public static final int notification_right_side_padding_top = 0x7f05005c; + public static final int notification_small_icon_background_padding = 0x7f05005d; + public static final int notification_small_icon_size_as_large = 0x7f05005e; + public static final int notification_subtext_size = 0x7f05005f; + public static final int notification_top_pad = 0x7f050060; + public static final int notification_top_pad_large_text = 0x7f050061; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060000; + public static final int abc_action_bar_item_background_material = 0x7f060001; + public static final int abc_btn_borderless_material = 0x7f060002; + public static final int abc_btn_check_material = 0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060005; + public static final int abc_btn_colored_material = 0x7f060006; + public static final int abc_btn_default_mtrl_shape = 0x7f060007; + public static final int abc_btn_radio_material = 0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000c; + public static final int abc_cab_background_internal_bg = 0x7f06000d; + public static final int abc_cab_background_top_material = 0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f06000f; + public static final int abc_control_background_material = 0x7f060010; + public static final int abc_dialog_material_background = 0x7f060011; + public static final int abc_edit_text_material = 0x7f060012; + public static final int abc_ic_ab_back_material = 0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060014; + public static final int abc_ic_clear_material = 0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060016; + public static final int abc_ic_go_search_api_material = 0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f060019; + public static final int abc_ic_menu_overflow_material = 0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f06001d; + public static final int abc_ic_search_api_material = 0x7f06001e; + public static final int abc_ic_star_black_16dp = 0x7f06001f; + public static final int abc_ic_star_black_36dp = 0x7f060020; + public static final int abc_ic_star_black_48dp = 0x7f060021; + public static final int abc_ic_star_half_black_16dp = 0x7f060022; + public static final int abc_ic_star_half_black_36dp = 0x7f060023; + public static final int abc_ic_star_half_black_48dp = 0x7f060024; + public static final int abc_ic_voice_search_api_material = 0x7f060025; + public static final int abc_item_background_holo_dark = 0x7f060026; + public static final int abc_item_background_holo_light = 0x7f060027; + public static final int abc_list_divider_mtrl_alpha = 0x7f060028; + public static final int abc_list_focused_holo = 0x7f060029; + public static final int abc_list_longpressed_holo = 0x7f06002a; + public static final int abc_list_pressed_holo_dark = 0x7f06002b; + public static final int abc_list_pressed_holo_light = 0x7f06002c; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f06002d; + public static final int abc_list_selector_background_transition_holo_light = 0x7f06002e; + public static final int abc_list_selector_disabled_holo_dark = 0x7f06002f; + public static final int abc_list_selector_disabled_holo_light = 0x7f060030; + public static final int abc_list_selector_holo_dark = 0x7f060031; + public static final int abc_list_selector_holo_light = 0x7f060032; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060033; + public static final int abc_popup_background_mtrl_mult = 0x7f060034; + public static final int abc_ratingbar_indicator_material = 0x7f060035; + public static final int abc_ratingbar_material = 0x7f060036; + public static final int abc_ratingbar_small_material = 0x7f060037; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f060038; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003a; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003b; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f06003c; + public static final int abc_seekbar_thumb_material = 0x7f06003d; + public static final int abc_seekbar_tick_mark_material = 0x7f06003e; + public static final int abc_seekbar_track_material = 0x7f06003f; + public static final int abc_spinner_mtrl_am_alpha = 0x7f060040; + public static final int abc_spinner_textfield_background_material = 0x7f060041; + public static final int abc_switch_thumb_material = 0x7f060042; + public static final int abc_switch_track_mtrl_alpha = 0x7f060043; + public static final int abc_tab_indicator_material = 0x7f060044; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f060045; + public static final int abc_text_cursor_material = 0x7f060046; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f060047; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f060048; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004a; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f06004c; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f06004d; + public static final int abc_textfield_default_mtrl_alpha = 0x7f06004e; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f06004f; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060050; + public static final int abc_textfield_search_material = 0x7f060051; + public static final int abc_vector_test = 0x7f060052; + public static final int cat = 0x7f060057; + public static final int container_backgroud = 0x7f060058; + public static final int notification_action_background = 0x7f06007c; + public static final int notification_bg = 0x7f06007d; + public static final int notification_bg_low = 0x7f06007e; + public static final int notification_bg_low_normal = 0x7f06007f; + public static final int notification_bg_low_pressed = 0x7f060080; + public static final int notification_bg_normal = 0x7f060081; + public static final int notification_bg_normal_pressed = 0x7f060082; + public static final int notification_icon_background = 0x7f060083; + public static final int notification_template_icon_bg = 0x7f060084; + public static final int notification_template_icon_low_bg = 0x7f060085; + public static final int notification_tile_bg = 0x7f060086; + public static final int notify_panel_notification_icon_bg = 0x7f060087; + public static final int po_seekbar = 0x7f060088; + public static final int po_seekbar1 = 0x7f060089; + public static final int refresh = 0x7f06008a; + public static final int right = 0x7f06008b; + public static final int thumb = 0x7f06008e; + public static final int thumb1 = 0x7f06008f; + public static final int wrong = 0x7f06009d; + } + public static final class id { + private id() {} + + public static final int accessFailed = 0x7f070000; + public static final int accessFailedText = 0x7f070001; + public static final int accessRight = 0x7f070002; + public static final int accessText = 0x7f070003; + public static final int action0 = 0x7f070004; + public static final int action_bar = 0x7f070005; + public static final int action_bar_activity_content = 0x7f070006; + public static final int action_bar_container = 0x7f070007; + public static final int action_bar_root = 0x7f070008; + public static final int action_bar_spinner = 0x7f070009; + public static final int action_bar_subtitle = 0x7f07000a; + public static final int action_bar_title = 0x7f07000b; + public static final int action_container = 0x7f07000c; + public static final int action_context_bar = 0x7f07000d; + public static final int action_divider = 0x7f07000e; + public static final int action_image = 0x7f07000f; + public static final int action_menu_divider = 0x7f070010; + public static final int action_menu_presenter = 0x7f070011; + public static final int action_mode_bar = 0x7f070012; + public static final int action_mode_bar_stub = 0x7f070013; + public static final int action_mode_close_button = 0x7f070014; + public static final int action_text = 0x7f070015; + public static final int actions = 0x7f070016; + public static final int activity_chooser_view_content = 0x7f070017; + public static final int add = 0x7f070018; + public static final int alertTitle = 0x7f070019; + public static final int always = 0x7f07001a; + public static final int beginning = 0x7f07001b; + public static final int bottom = 0x7f07001c; + public static final int buttonPanel = 0x7f070022; + public static final int cancel_action = 0x7f070023; + public static final int captCha = 0x7f070024; + public static final int checkbox = 0x7f070026; + public static final int chronometer = 0x7f070027; + public static final int collapseActionView = 0x7f070028; + public static final int contentPanel = 0x7f070029; + public static final int custom = 0x7f07002a; + public static final int customPanel = 0x7f07002b; + public static final int decor_content_parent = 0x7f07002c; + public static final int default_activity_button = 0x7f07002d; + public static final int disableHome = 0x7f070031; + public static final int edit_query = 0x7f070032; + public static final int end = 0x7f070033; + public static final int end_padder = 0x7f070034; + public static final int expand_activities_button = 0x7f07003a; + public static final int expanded_menu = 0x7f07003b; + public static final int home = 0x7f07003e; + public static final int homeAsUp = 0x7f07003f; + public static final int icon = 0x7f070041; + public static final int icon_group = 0x7f070042; + public static final int ifRoom = 0x7f070043; + public static final int image = 0x7f070044; + public static final int info = 0x7f070047; + public static final int line1 = 0x7f070048; + public static final int line3 = 0x7f070049; + public static final int listMode = 0x7f07004b; + public static final int list_item = 0x7f07004c; + public static final int media_actions = 0x7f07004f; + public static final int middle = 0x7f070050; + public static final int mode_bar = 0x7f070051; + public static final int mode_nonbar = 0x7f070052; + public static final int multiply = 0x7f070053; + public static final int never = 0x7f070054; + public static final int none = 0x7f070055; + public static final int normal = 0x7f070056; + public static final int notification_background = 0x7f070058; + public static final int notification_main_column = 0x7f070059; + public static final int notification_main_column_container = 0x7f07005a; + public static final int parentPanel = 0x7f07005b; + public static final int progress_circular = 0x7f07005d; + public static final int progress_horizontal = 0x7f07005e; + public static final int radio = 0x7f07005f; + public static final int refresh = 0x7f070060; + public static final int right_icon = 0x7f070061; + public static final int right_side = 0x7f070062; + public static final int screen = 0x7f070063; + public static final int scrollIndicatorDown = 0x7f070064; + public static final int scrollIndicatorUp = 0x7f070065; + public static final int scrollView = 0x7f070066; + public static final int search_badge = 0x7f070067; + public static final int search_bar = 0x7f070068; + public static final int search_button = 0x7f070069; + public static final int search_close_btn = 0x7f07006a; + public static final int search_edit_frame = 0x7f07006b; + public static final int search_go_btn = 0x7f07006c; + public static final int search_mag_icon = 0x7f07006d; + public static final int search_plate = 0x7f07006e; + public static final int search_src_text = 0x7f07006f; + public static final int search_voice_btn = 0x7f070070; + public static final int seekbar = 0x7f070071; + public static final int select_dialog_listview = 0x7f070072; + public static final int shortcut = 0x7f070073; + public static final int showCustom = 0x7f070074; + public static final int showHome = 0x7f070075; + public static final int showTitle = 0x7f070076; + public static final int spacer = 0x7f070077; + public static final int split_action_bar = 0x7f070078; + public static final int src_atop = 0x7f070079; + public static final int src_in = 0x7f07007a; + public static final int src_over = 0x7f07007b; + public static final int status_bar_latest_event_content = 0x7f07007c; + public static final int submenuarrow = 0x7f07007d; + public static final int submit_area = 0x7f07007e; + public static final int tabMode = 0x7f07007f; + public static final int text = 0x7f070080; + public static final int text2 = 0x7f070081; + public static final int textSpacerNoButtons = 0x7f070082; + public static final int textSpacerNoTitle = 0x7f070083; + public static final int time = 0x7f070084; + public static final int title = 0x7f070085; + public static final int titleDividerNoCustom = 0x7f070086; + public static final int title_template = 0x7f070087; + public static final int top = 0x7f070088; + public static final int topPanel = 0x7f070089; + public static final int up = 0x7f070090; + public static final int useLogo = 0x7f070091; + public static final int vertifyView = 0x7f070092; + public static final int withText = 0x7f0700a1; + public static final int wrap_content = 0x7f0700a2; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f080000; + public static final int abc_config_activityShortDur = 0x7f080001; + public static final int cancel_button_image_alpha = 0x7f080002; + public static final int status_bar_notification_info_maxnum = 0x7f080003; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f090000; + public static final int abc_action_bar_up_container = 0x7f090001; + public static final int abc_action_bar_view_list_nav_layout = 0x7f090002; + public static final int abc_action_menu_item_layout = 0x7f090003; + public static final int abc_action_menu_layout = 0x7f090004; + public static final int abc_action_mode_bar = 0x7f090005; + public static final int abc_action_mode_close_item_material = 0x7f090006; + public static final int abc_activity_chooser_view = 0x7f090007; + public static final int abc_activity_chooser_view_list_item = 0x7f090008; + public static final int abc_alert_dialog_button_bar_material = 0x7f090009; + public static final int abc_alert_dialog_material = 0x7f09000a; + public static final int abc_alert_dialog_title_material = 0x7f09000b; + public static final int abc_dialog_title_material = 0x7f09000c; + public static final int abc_expanded_menu_layout = 0x7f09000d; + public static final int abc_list_menu_item_checkbox = 0x7f09000e; + public static final int abc_list_menu_item_icon = 0x7f09000f; + public static final int abc_list_menu_item_layout = 0x7f090010; + public static final int abc_list_menu_item_radio = 0x7f090011; + public static final int abc_popup_menu_header_item_layout = 0x7f090012; + public static final int abc_popup_menu_item_layout = 0x7f090013; + public static final int abc_screen_content_include = 0x7f090014; + public static final int abc_screen_simple = 0x7f090015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f090016; + public static final int abc_screen_toolbar = 0x7f090017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f090018; + public static final int abc_search_view = 0x7f090019; + public static final int abc_select_dialog_material = 0x7f09001a; + public static final int activity_main = 0x7f09001b; + public static final int container = 0x7f09001c; + public static final int notification_action = 0x7f090026; + public static final int notification_action_tombstone = 0x7f090027; + public static final int notification_media_action = 0x7f090028; + public static final int notification_media_cancel_action = 0x7f090029; + public static final int notification_template_big_media = 0x7f09002a; + public static final int notification_template_big_media_custom = 0x7f09002b; + public static final int notification_template_big_media_narrow = 0x7f09002c; + public static final int notification_template_big_media_narrow_custom = 0x7f09002d; + public static final int notification_template_custom_big = 0x7f09002e; + public static final int notification_template_icon_group = 0x7f09002f; + public static final int notification_template_lines_media = 0x7f090030; + public static final int notification_template_media = 0x7f090031; + public static final int notification_template_media_custom = 0x7f090032; + public static final int notification_template_part_chronometer = 0x7f090033; + public static final int notification_template_part_time = 0x7f090034; + public static final int select_dialog_item_material = 0x7f090035; + public static final int select_dialog_multichoice_material = 0x7f090036; + public static final int select_dialog_singlechoice_material = 0x7f090037; + public static final int support_simple_spinner_dropdown_item = 0x7f090039; + } + public static final class mipmap { + private mipmap() {} + + public static final int cat = 0x7f0a0000; + public static final int cat1 = 0x7f0a0001; + public static final int ic_launcher = 0x7f0a0002; + public static final int ic_launcher_round = 0x7f0a0003; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0c0002; + public static final int abc_action_bar_home_description_format = 0x7f0c0003; + public static final int abc_action_bar_home_subtitle_description_format = 0x7f0c0004; + public static final int abc_action_bar_up_description = 0x7f0c0005; + public static final int abc_action_menu_overflow_description = 0x7f0c0006; + public static final int abc_action_mode_done = 0x7f0c0007; + public static final int abc_activity_chooser_view_see_all = 0x7f0c0008; + public static final int abc_activitychooserview_choose_application = 0x7f0c0009; + public static final int abc_capital_off = 0x7f0c000a; + public static final int abc_capital_on = 0x7f0c000b; + public static final int abc_font_family_body_1_material = 0x7f0c000c; + public static final int abc_font_family_body_2_material = 0x7f0c000d; + public static final int abc_font_family_button_material = 0x7f0c000e; + public static final int abc_font_family_caption_material = 0x7f0c000f; + public static final int abc_font_family_display_1_material = 0x7f0c0010; + public static final int abc_font_family_display_2_material = 0x7f0c0011; + public static final int abc_font_family_display_3_material = 0x7f0c0012; + public static final int abc_font_family_display_4_material = 0x7f0c0013; + public static final int abc_font_family_headline_material = 0x7f0c0014; + public static final int abc_font_family_menu_material = 0x7f0c0015; + public static final int abc_font_family_subhead_material = 0x7f0c0016; + public static final int abc_font_family_title_material = 0x7f0c0017; + public static final int abc_search_hint = 0x7f0c0018; + public static final int abc_searchview_description_clear = 0x7f0c0019; + public static final int abc_searchview_description_query = 0x7f0c001a; + public static final int abc_searchview_description_search = 0x7f0c001b; + public static final int abc_searchview_description_submit = 0x7f0c001c; + public static final int abc_searchview_description_voice = 0x7f0c001d; + public static final int abc_shareactionprovider_share_with = 0x7f0c001e; + public static final int abc_shareactionprovider_share_with_application = 0x7f0c001f; + public static final int abc_toolbar_collapse_description = 0x7f0c0020; + public static final int app_name = 0x7f0c0024; + public static final int search_menu_title = 0x7f0c0040; + public static final int status_bar_notification_info_overflow = 0x7f0c0049; + public static final int vertify_access = 0x7f0c004a; + public static final int vertify_failed = 0x7f0c004b; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0d0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0d0001; + public static final int Animation_AppCompat_Dialog = 0x7f0d0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0d0003; + public static final int AppTheme = 0x7f0d0004; + public static final int Base_AlertDialog_AppCompat = 0x7f0d0005; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0d0006; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0d0007; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0d0008; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0d000a; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0d0009; + public static final int Base_TextAppearance_AppCompat = 0x7f0d000b; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0d000c; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0d000d; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0d000e; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0d000f; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0d0010; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0d0011; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0d0012; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0d0013; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0d0014; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0d0015; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0d0016; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0d0017; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d0018; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d0019; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0d001a; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0d001b; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0d001c; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0d001d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d001e; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0d001f; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0d0020; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0d0021; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0d0022; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d0023; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0d0024; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0d0025; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d0026; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d0027; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d0028; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d002c; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0d002d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d002e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d002f; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d0030; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d0031; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d0032; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d0033; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d0034; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0d0035; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d0036; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d0037; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d0038; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d0039; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0d0048; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0d0049; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0d004a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d004b; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0d004c; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d004d; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0d004e; + public static final int Base_Theme_AppCompat = 0x7f0d003a; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0d003b; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0d003c; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0d0040; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0d003d; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0d003e; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0d003f; + public static final int Base_Theme_AppCompat_Light = 0x7f0d0041; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0d0042; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0d0043; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d0047; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0d0044; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0d0045; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d0046; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog = 0x7f0d0051; + public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0d004f; + public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0d0050; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0052; + public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0d0053; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0d0058; + public static final int Base_V21_Theme_AppCompat = 0x7f0d0054; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0d0055; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0d0056; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0d0057; + public static final int Base_V22_Theme_AppCompat = 0x7f0d0059; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0d005a; + public static final int Base_V23_Theme_AppCompat = 0x7f0d005b; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0d005c; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0d0061; + public static final int Base_V7_Theme_AppCompat = 0x7f0d005d; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0d005e; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0d005f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0d0060; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0062; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0d0063; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0d0064; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0d0065; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0d0066; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0d0067; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0d0068; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0d0069; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0d006a; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0d006b; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0d006c; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0d006d; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0d006e; + public static final int Base_Widget_AppCompat_Button = 0x7f0d006f; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0d0075; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d0076; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0d0070; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0071; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0072; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0d0073; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0d0074; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d0077; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d0078; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0d0079; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0d007a; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0d007b; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0d007c; + public static final int Base_Widget_AppCompat_EditText = 0x7f0d007d; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0d007e; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0d007f; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0080; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0081; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d0082; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d0083; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d0084; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0d0085; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0086; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0d0087; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0d0088; + public static final int Base_Widget_AppCompat_ListView = 0x7f0d0089; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0d008a; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0d008b; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0d008c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0d008d; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0d008e; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0d008f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0090; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0d0091; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0d0092; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0d0093; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0d0094; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0d0095; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0d0096; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0d0097; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0d0098; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0d0099; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0d009a; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0d009b; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d009c; + public static final int MySeekbarSytle = 0x7f0d009e; + public static final int Platform_AppCompat = 0x7f0d009f; + public static final int Platform_AppCompat_Light = 0x7f0d00a0; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0d00a1; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0d00a2; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0d00a3; + public static final int Platform_V11_AppCompat = 0x7f0d00a4; + public static final int Platform_V11_AppCompat_Light = 0x7f0d00a5; + public static final int Platform_V14_AppCompat = 0x7f0d00a6; + public static final int Platform_V14_AppCompat_Light = 0x7f0d00a7; + public static final int Platform_V21_AppCompat = 0x7f0d00a8; + public static final int Platform_V21_AppCompat_Light = 0x7f0d00a9; + public static final int Platform_V25_AppCompat = 0x7f0d00aa; + public static final int Platform_V25_AppCompat_Light = 0x7f0d00ab; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0d00ac; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0d00ad; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0d00ae; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0d00af; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0d00b0; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0d00b1; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0d00b2; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0d00b8; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0d00b3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0d00b4; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0d00b5; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0d00b6; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0d00b7; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0d00b9; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0d00ba; + public static final int TextAppearance_AppCompat = 0x7f0d00bb; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0d00bc; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0d00bd; + public static final int TextAppearance_AppCompat_Button = 0x7f0d00be; + public static final int TextAppearance_AppCompat_Caption = 0x7f0d00bf; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0d00c0; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0d00c1; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0d00c2; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0d00c3; + public static final int TextAppearance_AppCompat_Headline = 0x7f0d00c4; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0d00c5; + public static final int TextAppearance_AppCompat_Large = 0x7f0d00c6; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0d00c7; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0d00c8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0d00c9; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d00ca; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d00cb; + public static final int TextAppearance_AppCompat_Medium = 0x7f0d00cc; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0d00cd; + public static final int TextAppearance_AppCompat_Menu = 0x7f0d00ce; + public static final int TextAppearance_AppCompat_Notification = 0x7f0d00cf; + public static final int TextAppearance_AppCompat_Notification_Info = 0x7f0d00d0; + public static final int TextAppearance_AppCompat_Notification_Info_Media = 0x7f0d00d1; + public static final int TextAppearance_AppCompat_Notification_Line2 = 0x7f0d00d2; + public static final int TextAppearance_AppCompat_Notification_Line2_Media = 0x7f0d00d3; + public static final int TextAppearance_AppCompat_Notification_Media = 0x7f0d00d4; + public static final int TextAppearance_AppCompat_Notification_Time = 0x7f0d00d5; + public static final int TextAppearance_AppCompat_Notification_Time_Media = 0x7f0d00d6; + public static final int TextAppearance_AppCompat_Notification_Title = 0x7f0d00d7; + public static final int TextAppearance_AppCompat_Notification_Title_Media = 0x7f0d00d8; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d00d9; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0d00da; + public static final int TextAppearance_AppCompat_Small = 0x7f0d00db; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0d00dc; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0d00dd; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d00de; + public static final int TextAppearance_AppCompat_Title = 0x7f0d00df; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0d00e0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d00e1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d00e2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d00e5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d00e6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0d00e7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0d00e9; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0d00ea; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d00eb; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d00ec; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d00ed; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d00ee; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d00ef; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d00f0; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d00f1; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0d00f2; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d00f3; + public static final int TextAppearance_StatusBar_EventContent = 0x7f0d00f4; + public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0d00f5; + public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0d00f6; + public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0d00f7; + public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0d00f8; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d00f9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d00fa; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d00fb; + public static final int ThemeOverlay_AppCompat = 0x7f0d0111; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0d0112; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0d0113; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d0114; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0d0115; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d0116; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0d0117; + public static final int Theme_AppCompat = 0x7f0d00fc; + public static final int Theme_AppCompat_CompactMenu = 0x7f0d00fd; + public static final int Theme_AppCompat_DayNight = 0x7f0d00fe; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0d00ff; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0d0100; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0d0103; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0d0101; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0d0102; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0d0104; + public static final int Theme_AppCompat_Dialog = 0x7f0d0105; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0d0108; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0d0106; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0d0107; + public static final int Theme_AppCompat_Light = 0x7f0d0109; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0d010a; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0d010b; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d010e; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0d010c; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d010d; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0d010f; + public static final int Theme_AppCompat_NoActionBar = 0x7f0d0110; + public static final int Widget_AppCompat_ActionBar = 0x7f0d011b; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0d011c; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0d011d; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0d011e; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0d011f; + public static final int Widget_AppCompat_ActionButton = 0x7f0d0120; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0d0121; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0d0122; + public static final int Widget_AppCompat_ActionMode = 0x7f0d0123; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0d0124; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0d0125; + public static final int Widget_AppCompat_Button = 0x7f0d0126; + public static final int Widget_AppCompat_ButtonBar = 0x7f0d012c; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d012d; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0d0127; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0128; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0129; + public static final int Widget_AppCompat_Button_Colored = 0x7f0d012a; + public static final int Widget_AppCompat_Button_Small = 0x7f0d012b; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d012e; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d012f; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0d0130; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0d0131; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0d0132; + public static final int Widget_AppCompat_EditText = 0x7f0d0133; + public static final int Widget_AppCompat_ImageButton = 0x7f0d0134; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0d0135; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0136; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0d0137; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0138; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0d0139; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d013a; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d013b; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d013c; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0d013d; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0d013e; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0d013f; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0d0140; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0d0141; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0d0142; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0d0143; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0d0144; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0d0145; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0d0146; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0d0147; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0148; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0d0149; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0d014a; + public static final int Widget_AppCompat_ListMenuView = 0x7f0d014b; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0d014c; + public static final int Widget_AppCompat_ListView = 0x7f0d014d; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0d014e; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0d014f; + public static final int Widget_AppCompat_NotificationActionContainer = 0x7f0d0150; + public static final int Widget_AppCompat_NotificationActionText = 0x7f0d0151; + public static final int Widget_AppCompat_PopupMenu = 0x7f0d0152; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0d0153; + public static final int Widget_AppCompat_PopupWindow = 0x7f0d0154; + public static final int Widget_AppCompat_ProgressBar = 0x7f0d0155; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0156; + public static final int Widget_AppCompat_RatingBar = 0x7f0d0157; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0d0158; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0d0159; + public static final int Widget_AppCompat_SearchView = 0x7f0d015a; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0d015b; + public static final int Widget_AppCompat_SeekBar = 0x7f0d015c; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0d015d; + public static final int Widget_AppCompat_Spinner = 0x7f0d015e; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0d015f; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0d0160; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0d0161; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0d0162; + public static final int Widget_AppCompat_Toolbar = 0x7f0d0163; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d0164; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f02002b, 0x7f02002c, 0x7f02002d, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020056, 0x7f02005a, 0x7f02005b, 0x7f020066, 0x7f02006a, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02006e, 0x7f020071, 0x7f020074, 0x7f020081, 0x7f02008a, 0x7f020094, 0x7f020097, 0x7f020098, 0x7f0200b4, 0x7f0200b7, 0x7f0200d0, 0x7f0200d9 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f02002b, 0x7f02002c, 0x7f020041, 0x7f02006a, 0x7f0200b7, 0x7f0200d9 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f020067, 0x7f020072 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f020039, 0x7f020078, 0x7f020079, 0x7f020087, 0x7f0200a9, 0x7f0200aa }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonPanelSideLayout = 1; + public static final int AlertDialog_listItemLayout = 2; + public static final int AlertDialog_listLayout = 3; + public static final int AlertDialog_multiChoiceItemLayout = 4; + public static final int AlertDialog_showTitle = 5; + public static final int AlertDialog_singleChoiceItemLayout = 6; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f0200b0 }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f0200bd }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_textAllCaps = 1; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002a, 0x7f020032, 0x7f020033, 0x7f020034, 0x7f020035, 0x7f020036, 0x7f020037, 0x7f02003a, 0x7f02003b, 0x7f02003e, 0x7f02003f, 0x7f020045, 0x7f020046, 0x7f020047, 0x7f020048, 0x7f020049, 0x7f02004a, 0x7f02004b, 0x7f02004c, 0x7f02004d, 0x7f020055, 0x7f020058, 0x7f020059, 0x7f02005c, 0x7f02005e, 0x7f020061, 0x7f020062, 0x7f020063, 0x7f020064, 0x7f020065, 0x7f02006c, 0x7f020070, 0x7f020076, 0x7f020077, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020095, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200ac, 0x7f0200ad, 0x7f0200bb, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200da, 0x7f0200db, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e3, 0x7f0200e4, 0x7f0200e5, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9 }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorPrimary = 54; + public static final int AppCompatTheme_colorPrimaryDark = 55; + public static final int AppCompatTheme_colorSwitchThumbNormal = 56; + public static final int AppCompatTheme_controlBackground = 57; + public static final int AppCompatTheme_dialogPreferredPadding = 58; + public static final int AppCompatTheme_dialogTheme = 59; + public static final int AppCompatTheme_dividerHorizontal = 60; + public static final int AppCompatTheme_dividerVertical = 61; + public static final int AppCompatTheme_dropDownListViewStyle = 62; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 63; + public static final int AppCompatTheme_editTextBackground = 64; + public static final int AppCompatTheme_editTextColor = 65; + public static final int AppCompatTheme_editTextStyle = 66; + public static final int AppCompatTheme_homeAsUpIndicator = 67; + public static final int AppCompatTheme_imageButtonStyle = 68; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 69; + public static final int AppCompatTheme_listDividerAlertDialog = 70; + public static final int AppCompatTheme_listMenuViewStyle = 71; + public static final int AppCompatTheme_listPopupWindowStyle = 72; + public static final int AppCompatTheme_listPreferredItemHeight = 73; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 74; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 75; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 76; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 77; + public static final int AppCompatTheme_panelBackground = 78; + public static final int AppCompatTheme_panelMenuListTheme = 79; + public static final int AppCompatTheme_panelMenuListWidth = 80; + public static final int AppCompatTheme_popupMenuStyle = 81; + public static final int AppCompatTheme_popupWindowStyle = 82; + public static final int AppCompatTheme_radioButtonStyle = 83; + public static final int AppCompatTheme_ratingBarStyle = 84; + public static final int AppCompatTheme_ratingBarStyleIndicator = 85; + public static final int AppCompatTheme_ratingBarStyleSmall = 86; + public static final int AppCompatTheme_searchViewStyle = 87; + public static final int AppCompatTheme_seekBarStyle = 88; + public static final int AppCompatTheme_selectableItemBackground = 89; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 90; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 91; + public static final int AppCompatTheme_spinnerStyle = 92; + public static final int AppCompatTheme_switchStyle = 93; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 94; + public static final int AppCompatTheme_textAppearanceListItem = 95; + public static final int AppCompatTheme_textAppearanceListItemSmall = 96; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 97; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 98; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 99; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 100; + public static final int AppCompatTheme_textColorAlertDialogListItem = 101; + public static final int AppCompatTheme_textColorSearchUrl = 102; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 103; + public static final int AppCompatTheme_toolbarStyle = 104; + public static final int AppCompatTheme_windowActionBar = 105; + public static final int AppCompatTheme_windowActionBarOverlay = 106; + public static final int AppCompatTheme_windowActionModeOverlay = 107; + public static final int AppCompatTheme_windowFixedHeightMajor = 108; + public static final int AppCompatTheme_windowFixedHeightMinor = 109; + public static final int AppCompatTheme_windowFixedWidthMajor = 110; + public static final int AppCompatTheme_windowFixedWidthMinor = 111; + public static final int AppCompatTheme_windowMinWidthMajor = 112; + public static final int AppCompatTheme_windowMinWidthMinor = 113; + public static final int AppCompatTheme_windowNoTitle = 114; + public static final int[] ButtonBarLayout = { 0x7f020026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] Captcha = { 0x7f020031, 0x7f020084, 0x7f020086, 0x7f020099, 0x7f0200af, 0x7f0200c9 }; + public static final int Captcha_blockSize = 0; + public static final int Captcha_max_fail_count = 1; + public static final int Captcha_mode = 2; + public static final int Captcha_progressDrawable = 3; + public static final int Captcha_src = 4; + public static final int Captcha_thumbDrawable = 5; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f02003c, 0x7f02003d }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] DrawerArrowToggle = { 0x7f020028, 0x7f020029, 0x7f020030, 0x7f020044, 0x7f02005f, 0x7f020068, 0x7f0200ab, 0x7f0200c8 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f02005b, 0x7f02005d, 0x7f020085, 0x7f0200a7 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f0200a6 }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_showAsAction = 16; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f020096, 0x7f0200b2 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f02008b }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f0200b1 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f02008c, 0x7f02008f }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f020040, 0x7f02004e, 0x7f020057, 0x7f020069, 0x7f02006f, 0x7f020075, 0x7f02009a, 0x7f02009b, 0x7f0200a0, 0x7f0200a1, 0x7f0200b3, 0x7f0200b8, 0x7f0200df }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f020094 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f0200a8, 0x7f0200ae, 0x7f0200b9, 0x7f0200ba, 0x7f0200bc, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200dc, 0x7f0200dd, 0x7f0200de }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x7f0200bd }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_shadowColor = 5; + public static final int TextAppearance_android_shadowDx = 6; + public static final int TextAppearance_android_shadowDy = 7; + public static final int TextAppearance_android_shadowRadius = 8; + public static final int TextAppearance_textAllCaps = 9; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f020038, 0x7f020042, 0x7f020043, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020081, 0x7f020082, 0x7f020083, 0x7f020088, 0x7f020089, 0x7f020094, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f02008d, 0x7f02008e, 0x7f0200c7 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f02002e, 0x7f02002f }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/luozm/captcha/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/luozm/captcha/R.java new file mode 100644 index 0000000..6166eb8 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/luozm/captcha/R.java @@ -0,0 +1,1518 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * gradle plugin from the resource data it found. It + * should not be modified by hand. + */ +package com.luozm.captcha; + +public final class R { + private R() {} + + public static final class anim { + private anim() {} + + public static final int abc_fade_in = 0x7f010000; + public static final int abc_fade_out = 0x7f010001; + public static final int abc_grow_fade_in_from_bottom = 0x7f010002; + public static final int abc_popup_enter = 0x7f010003; + public static final int abc_popup_exit = 0x7f010004; + public static final int abc_shrink_fade_out_from_bottom = 0x7f010005; + public static final int abc_slide_in_bottom = 0x7f010006; + public static final int abc_slide_in_top = 0x7f010007; + public static final int abc_slide_out_bottom = 0x7f010008; + public static final int abc_slide_out_top = 0x7f010009; + } + public static final class attr { + private attr() {} + + public static final int actionBarDivider = 0x7f020000; + public static final int actionBarItemBackground = 0x7f020001; + public static final int actionBarPopupTheme = 0x7f020002; + public static final int actionBarSize = 0x7f020003; + public static final int actionBarSplitStyle = 0x7f020004; + public static final int actionBarStyle = 0x7f020005; + public static final int actionBarTabBarStyle = 0x7f020006; + public static final int actionBarTabStyle = 0x7f020007; + public static final int actionBarTabTextStyle = 0x7f020008; + public static final int actionBarTheme = 0x7f020009; + public static final int actionBarWidgetTheme = 0x7f02000a; + public static final int actionButtonStyle = 0x7f02000b; + public static final int actionDropDownStyle = 0x7f02000c; + public static final int actionLayout = 0x7f02000d; + public static final int actionMenuTextAppearance = 0x7f02000e; + public static final int actionMenuTextColor = 0x7f02000f; + public static final int actionModeBackground = 0x7f020010; + public static final int actionModeCloseButtonStyle = 0x7f020011; + public static final int actionModeCloseDrawable = 0x7f020012; + public static final int actionModeCopyDrawable = 0x7f020013; + public static final int actionModeCutDrawable = 0x7f020014; + public static final int actionModeFindDrawable = 0x7f020015; + public static final int actionModePasteDrawable = 0x7f020016; + public static final int actionModePopupWindowStyle = 0x7f020017; + public static final int actionModeSelectAllDrawable = 0x7f020018; + public static final int actionModeShareDrawable = 0x7f020019; + public static final int actionModeSplitBackground = 0x7f02001a; + public static final int actionModeStyle = 0x7f02001b; + public static final int actionModeWebSearchDrawable = 0x7f02001c; + public static final int actionOverflowButtonStyle = 0x7f02001d; + public static final int actionOverflowMenuStyle = 0x7f02001e; + public static final int actionProviderClass = 0x7f02001f; + public static final int actionViewClass = 0x7f020020; + public static final int activityChooserViewStyle = 0x7f020021; + public static final int alertDialogButtonGroupStyle = 0x7f020022; + public static final int alertDialogCenterButtons = 0x7f020023; + public static final int alertDialogStyle = 0x7f020024; + public static final int alertDialogTheme = 0x7f020025; + public static final int allowStacking = 0x7f020026; + public static final int alpha = 0x7f020027; + public static final int arrowHeadLength = 0x7f020028; + public static final int arrowShaftLength = 0x7f020029; + public static final int autoCompleteTextViewStyle = 0x7f02002a; + public static final int background = 0x7f02002b; + public static final int backgroundSplit = 0x7f02002c; + public static final int backgroundStacked = 0x7f02002d; + public static final int backgroundTint = 0x7f02002e; + public static final int backgroundTintMode = 0x7f02002f; + public static final int barLength = 0x7f020030; + public static final int blockSize = 0x7f020031; + public static final int borderlessButtonStyle = 0x7f020032; + public static final int buttonBarButtonStyle = 0x7f020033; + public static final int buttonBarNegativeButtonStyle = 0x7f020034; + public static final int buttonBarNeutralButtonStyle = 0x7f020035; + public static final int buttonBarPositiveButtonStyle = 0x7f020036; + public static final int buttonBarStyle = 0x7f020037; + public static final int buttonGravity = 0x7f020038; + public static final int buttonPanelSideLayout = 0x7f020039; + public static final int buttonStyle = 0x7f02003a; + public static final int buttonStyleSmall = 0x7f02003b; + public static final int buttonTint = 0x7f02003c; + public static final int buttonTintMode = 0x7f02003d; + public static final int checkboxStyle = 0x7f02003e; + public static final int checkedTextViewStyle = 0x7f02003f; + public static final int closeIcon = 0x7f020040; + public static final int closeItemLayout = 0x7f020041; + public static final int collapseContentDescription = 0x7f020042; + public static final int collapseIcon = 0x7f020043; + public static final int color = 0x7f020044; + public static final int colorAccent = 0x7f020045; + public static final int colorBackgroundFloating = 0x7f020046; + public static final int colorButtonNormal = 0x7f020047; + public static final int colorControlActivated = 0x7f020048; + public static final int colorControlHighlight = 0x7f020049; + public static final int colorControlNormal = 0x7f02004a; + public static final int colorPrimary = 0x7f02004b; + public static final int colorPrimaryDark = 0x7f02004c; + public static final int colorSwitchThumbNormal = 0x7f02004d; + public static final int commitIcon = 0x7f02004e; + public static final int contentInsetEnd = 0x7f02004f; + public static final int contentInsetEndWithActions = 0x7f020050; + public static final int contentInsetLeft = 0x7f020051; + public static final int contentInsetRight = 0x7f020052; + public static final int contentInsetStart = 0x7f020053; + public static final int contentInsetStartWithNavigation = 0x7f020054; + public static final int controlBackground = 0x7f020055; + public static final int customNavigationLayout = 0x7f020056; + public static final int defaultQueryHint = 0x7f020057; + public static final int dialogPreferredPadding = 0x7f020058; + public static final int dialogTheme = 0x7f020059; + public static final int displayOptions = 0x7f02005a; + public static final int divider = 0x7f02005b; + public static final int dividerHorizontal = 0x7f02005c; + public static final int dividerPadding = 0x7f02005d; + public static final int dividerVertical = 0x7f02005e; + public static final int drawableSize = 0x7f02005f; + public static final int drawerArrowStyle = 0x7f020060; + public static final int dropDownListViewStyle = 0x7f020061; + public static final int dropdownListPreferredItemHeight = 0x7f020062; + public static final int editTextBackground = 0x7f020063; + public static final int editTextColor = 0x7f020064; + public static final int editTextStyle = 0x7f020065; + public static final int elevation = 0x7f020066; + public static final int expandActivityOverflowButtonDrawable = 0x7f020067; + public static final int gapBetweenBars = 0x7f020068; + public static final int goIcon = 0x7f020069; + public static final int height = 0x7f02006a; + public static final int hideOnContentScroll = 0x7f02006b; + public static final int homeAsUpIndicator = 0x7f02006c; + public static final int homeLayout = 0x7f02006d; + public static final int icon = 0x7f02006e; + public static final int iconifiedByDefault = 0x7f02006f; + public static final int imageButtonStyle = 0x7f020070; + public static final int indeterminateProgressStyle = 0x7f020071; + public static final int initialActivityCount = 0x7f020072; + public static final int isLightTheme = 0x7f020073; + public static final int itemPadding = 0x7f020074; + public static final int layout = 0x7f020075; + public static final int listChoiceBackgroundIndicator = 0x7f020076; + public static final int listDividerAlertDialog = 0x7f020077; + public static final int listItemLayout = 0x7f020078; + public static final int listLayout = 0x7f020079; + public static final int listMenuViewStyle = 0x7f02007a; + public static final int listPopupWindowStyle = 0x7f02007b; + public static final int listPreferredItemHeight = 0x7f02007c; + public static final int listPreferredItemHeightLarge = 0x7f02007d; + public static final int listPreferredItemHeightSmall = 0x7f02007e; + public static final int listPreferredItemPaddingLeft = 0x7f02007f; + public static final int listPreferredItemPaddingRight = 0x7f020080; + public static final int logo = 0x7f020081; + public static final int logoDescription = 0x7f020082; + public static final int maxButtonHeight = 0x7f020083; + public static final int max_fail_count = 0x7f020084; + public static final int measureWithLargestChild = 0x7f020085; + public static final int mode = 0x7f020086; + public static final int multiChoiceItemLayout = 0x7f020087; + public static final int navigationContentDescription = 0x7f020088; + public static final int navigationIcon = 0x7f020089; + public static final int navigationMode = 0x7f02008a; + public static final int overlapAnchor = 0x7f02008b; + public static final int paddingBottomNoButtons = 0x7f02008c; + public static final int paddingEnd = 0x7f02008d; + public static final int paddingStart = 0x7f02008e; + public static final int paddingTopNoTitle = 0x7f02008f; + public static final int panelBackground = 0x7f020090; + public static final int panelMenuListTheme = 0x7f020091; + public static final int panelMenuListWidth = 0x7f020092; + public static final int popupMenuStyle = 0x7f020093; + public static final int popupTheme = 0x7f020094; + public static final int popupWindowStyle = 0x7f020095; + public static final int preserveIconSpacing = 0x7f020096; + public static final int progressBarPadding = 0x7f020097; + public static final int progressBarStyle = 0x7f020098; + public static final int progressDrawable = 0x7f020099; + public static final int queryBackground = 0x7f02009a; + public static final int queryHint = 0x7f02009b; + public static final int radioButtonStyle = 0x7f02009c; + public static final int ratingBarStyle = 0x7f02009d; + public static final int ratingBarStyleIndicator = 0x7f02009e; + public static final int ratingBarStyleSmall = 0x7f02009f; + public static final int searchHintIcon = 0x7f0200a0; + public static final int searchIcon = 0x7f0200a1; + public static final int searchViewStyle = 0x7f0200a2; + public static final int seekBarStyle = 0x7f0200a3; + public static final int selectableItemBackground = 0x7f0200a4; + public static final int selectableItemBackgroundBorderless = 0x7f0200a5; + public static final int showAsAction = 0x7f0200a6; + public static final int showDividers = 0x7f0200a7; + public static final int showText = 0x7f0200a8; + public static final int showTitle = 0x7f0200a9; + public static final int singleChoiceItemLayout = 0x7f0200aa; + public static final int spinBars = 0x7f0200ab; + public static final int spinnerDropDownItemStyle = 0x7f0200ac; + public static final int spinnerStyle = 0x7f0200ad; + public static final int splitTrack = 0x7f0200ae; + public static final int src = 0x7f0200af; + public static final int srcCompat = 0x7f0200b0; + public static final int state_above_anchor = 0x7f0200b1; + public static final int subMenuArrow = 0x7f0200b2; + public static final int submitBackground = 0x7f0200b3; + public static final int subtitle = 0x7f0200b4; + public static final int subtitleTextAppearance = 0x7f0200b5; + public static final int subtitleTextColor = 0x7f0200b6; + public static final int subtitleTextStyle = 0x7f0200b7; + public static final int suggestionRowLayout = 0x7f0200b8; + public static final int switchMinWidth = 0x7f0200b9; + public static final int switchPadding = 0x7f0200ba; + public static final int switchStyle = 0x7f0200bb; + public static final int switchTextAppearance = 0x7f0200bc; + public static final int textAllCaps = 0x7f0200bd; + public static final int textAppearanceLargePopupMenu = 0x7f0200be; + public static final int textAppearanceListItem = 0x7f0200bf; + public static final int textAppearanceListItemSmall = 0x7f0200c0; + public static final int textAppearancePopupMenuHeader = 0x7f0200c1; + public static final int textAppearanceSearchResultSubtitle = 0x7f0200c2; + public static final int textAppearanceSearchResultTitle = 0x7f0200c3; + public static final int textAppearanceSmallPopupMenu = 0x7f0200c4; + public static final int textColorAlertDialogListItem = 0x7f0200c5; + public static final int textColorSearchUrl = 0x7f0200c6; + public static final int theme = 0x7f0200c7; + public static final int thickness = 0x7f0200c8; + public static final int thumbDrawable = 0x7f0200c9; + public static final int thumbTextPadding = 0x7f0200ca; + public static final int thumbTint = 0x7f0200cb; + public static final int thumbTintMode = 0x7f0200cc; + public static final int tickMark = 0x7f0200cd; + public static final int tickMarkTint = 0x7f0200ce; + public static final int tickMarkTintMode = 0x7f0200cf; + public static final int title = 0x7f0200d0; + public static final int titleMargin = 0x7f0200d1; + public static final int titleMarginBottom = 0x7f0200d2; + public static final int titleMarginEnd = 0x7f0200d3; + public static final int titleMarginStart = 0x7f0200d4; + public static final int titleMarginTop = 0x7f0200d5; + public static final int titleMargins = 0x7f0200d6; + public static final int titleTextAppearance = 0x7f0200d7; + public static final int titleTextColor = 0x7f0200d8; + public static final int titleTextStyle = 0x7f0200d9; + public static final int toolbarNavigationButtonStyle = 0x7f0200da; + public static final int toolbarStyle = 0x7f0200db; + public static final int track = 0x7f0200dc; + public static final int trackTint = 0x7f0200dd; + public static final int trackTintMode = 0x7f0200de; + public static final int voiceIcon = 0x7f0200df; + public static final int windowActionBar = 0x7f0200e0; + public static final int windowActionBarOverlay = 0x7f0200e1; + public static final int windowActionModeOverlay = 0x7f0200e2; + public static final int windowFixedHeightMajor = 0x7f0200e3; + public static final int windowFixedHeightMinor = 0x7f0200e4; + public static final int windowFixedWidthMajor = 0x7f0200e5; + public static final int windowFixedWidthMinor = 0x7f0200e6; + public static final int windowMinWidthMajor = 0x7f0200e7; + public static final int windowMinWidthMinor = 0x7f0200e8; + public static final int windowNoTitle = 0x7f0200e9; + } + public static final class bool { + private bool() {} + + public static final int abc_action_bar_embed_tabs = 0x7f030000; + public static final int abc_allow_stacked_button_bar = 0x7f030001; + public static final int abc_config_actionMenuItemAllCaps = 0x7f030002; + public static final int abc_config_closeDialogWhenTouchOutside = 0x7f030003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f030004; + } + public static final class color { + private color() {} + + public static final int abc_background_cache_hint_selector_material_dark = 0x7f040000; + public static final int abc_background_cache_hint_selector_material_light = 0x7f040001; + public static final int abc_btn_colored_borderless_text_material = 0x7f040002; + public static final int abc_btn_colored_text_material = 0x7f040003; + public static final int abc_color_highlight_material = 0x7f040004; + public static final int abc_hint_foreground_material_dark = 0x7f040005; + public static final int abc_hint_foreground_material_light = 0x7f040006; + public static final int abc_input_method_navigation_guard = 0x7f040007; + public static final int abc_primary_text_disable_only_material_dark = 0x7f040008; + public static final int abc_primary_text_disable_only_material_light = 0x7f040009; + public static final int abc_primary_text_material_dark = 0x7f04000a; + public static final int abc_primary_text_material_light = 0x7f04000b; + public static final int abc_search_url_text = 0x7f04000c; + public static final int abc_search_url_text_normal = 0x7f04000d; + public static final int abc_search_url_text_pressed = 0x7f04000e; + public static final int abc_search_url_text_selected = 0x7f04000f; + public static final int abc_secondary_text_material_dark = 0x7f040010; + public static final int abc_secondary_text_material_light = 0x7f040011; + public static final int abc_tint_btn_checkable = 0x7f040012; + public static final int abc_tint_default = 0x7f040013; + public static final int abc_tint_edittext = 0x7f040014; + public static final int abc_tint_seek_thumb = 0x7f040015; + public static final int abc_tint_spinner = 0x7f040016; + public static final int abc_tint_switch_thumb = 0x7f040017; + public static final int abc_tint_switch_track = 0x7f040018; + public static final int accent_material_dark = 0x7f040019; + public static final int accent_material_light = 0x7f04001a; + public static final int background_floating_material_dark = 0x7f04001b; + public static final int background_floating_material_light = 0x7f04001c; + public static final int background_material_dark = 0x7f04001d; + public static final int background_material_light = 0x7f04001e; + public static final int bright_foreground_disabled_material_dark = 0x7f040020; + public static final int bright_foreground_disabled_material_light = 0x7f040021; + public static final int bright_foreground_inverse_material_dark = 0x7f040022; + public static final int bright_foreground_inverse_material_light = 0x7f040023; + public static final int bright_foreground_material_dark = 0x7f040024; + public static final int bright_foreground_material_light = 0x7f040025; + public static final int button_material_dark = 0x7f040026; + public static final int button_material_light = 0x7f040027; + public static final int dim_foreground_disabled_material_dark = 0x7f04002b; + public static final int dim_foreground_disabled_material_light = 0x7f04002c; + public static final int dim_foreground_material_dark = 0x7f04002d; + public static final int dim_foreground_material_light = 0x7f04002e; + public static final int foreground_material_dark = 0x7f04002f; + public static final int foreground_material_light = 0x7f040030; + public static final int highlighted_text_material_dark = 0x7f040031; + public static final int highlighted_text_material_light = 0x7f040032; + public static final int material_blue_grey_800 = 0x7f040033; + public static final int material_blue_grey_900 = 0x7f040034; + public static final int material_blue_grey_950 = 0x7f040035; + public static final int material_deep_teal_200 = 0x7f040036; + public static final int material_deep_teal_500 = 0x7f040037; + public static final int material_grey_100 = 0x7f040038; + public static final int material_grey_300 = 0x7f040039; + public static final int material_grey_50 = 0x7f04003a; + public static final int material_grey_600 = 0x7f04003b; + public static final int material_grey_800 = 0x7f04003c; + public static final int material_grey_850 = 0x7f04003d; + public static final int material_grey_900 = 0x7f04003e; + public static final int notification_action_color_filter = 0x7f04003f; + public static final int notification_icon_bg_color = 0x7f040040; + public static final int notification_material_background_media_default_color = 0x7f040041; + public static final int primary_dark_material_dark = 0x7f040042; + public static final int primary_dark_material_light = 0x7f040043; + public static final int primary_material_dark = 0x7f040044; + public static final int primary_material_light = 0x7f040045; + public static final int primary_text_default_material_dark = 0x7f040046; + public static final int primary_text_default_material_light = 0x7f040047; + public static final int primary_text_disabled_material_dark = 0x7f040048; + public static final int primary_text_disabled_material_light = 0x7f040049; + public static final int ripple_material_dark = 0x7f04004a; + public static final int ripple_material_light = 0x7f04004b; + public static final int secondary_text_default_material_dark = 0x7f04004c; + public static final int secondary_text_default_material_light = 0x7f04004d; + public static final int secondary_text_disabled_material_dark = 0x7f04004e; + public static final int secondary_text_disabled_material_light = 0x7f04004f; + public static final int switch_thumb_disabled_material_dark = 0x7f040050; + public static final int switch_thumb_disabled_material_light = 0x7f040051; + public static final int switch_thumb_material_dark = 0x7f040052; + public static final int switch_thumb_material_light = 0x7f040053; + public static final int switch_thumb_normal_material_dark = 0x7f040054; + public static final int switch_thumb_normal_material_light = 0x7f040055; + } + public static final class dimen { + private dimen() {} + + public static final int abc_action_bar_content_inset_material = 0x7f050000; + public static final int abc_action_bar_content_inset_with_nav = 0x7f050001; + public static final int abc_action_bar_default_height_material = 0x7f050002; + public static final int abc_action_bar_default_padding_end_material = 0x7f050003; + public static final int abc_action_bar_default_padding_start_material = 0x7f050004; + public static final int abc_action_bar_elevation_material = 0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material = 0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material = 0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material = 0x7f050008; + public static final int abc_action_bar_progress_bar_size = 0x7f050009; + public static final int abc_action_bar_stacked_max_height = 0x7f05000a; + public static final int abc_action_bar_stacked_tab_max_width = 0x7f05000b; + public static final int abc_action_bar_subtitle_bottom_margin_material = 0x7f05000c; + public static final int abc_action_bar_subtitle_top_margin_material = 0x7f05000d; + public static final int abc_action_button_min_height_material = 0x7f05000e; + public static final int abc_action_button_min_width_material = 0x7f05000f; + public static final int abc_action_button_min_width_overflow_material = 0x7f050010; + public static final int abc_alert_dialog_button_bar_height = 0x7f050011; + public static final int abc_button_inset_horizontal_material = 0x7f050012; + public static final int abc_button_inset_vertical_material = 0x7f050013; + public static final int abc_button_padding_horizontal_material = 0x7f050014; + public static final int abc_button_padding_vertical_material = 0x7f050015; + public static final int abc_cascading_menus_min_smallest_width = 0x7f050016; + public static final int abc_config_prefDialogWidth = 0x7f050017; + public static final int abc_control_corner_material = 0x7f050018; + public static final int abc_control_inset_material = 0x7f050019; + public static final int abc_control_padding_material = 0x7f05001a; + public static final int abc_dialog_fixed_height_major = 0x7f05001b; + public static final int abc_dialog_fixed_height_minor = 0x7f05001c; + public static final int abc_dialog_fixed_width_major = 0x7f05001d; + public static final int abc_dialog_fixed_width_minor = 0x7f05001e; + public static final int abc_dialog_list_padding_bottom_no_buttons = 0x7f05001f; + public static final int abc_dialog_list_padding_top_no_title = 0x7f050020; + public static final int abc_dialog_min_width_major = 0x7f050021; + public static final int abc_dialog_min_width_minor = 0x7f050022; + public static final int abc_dialog_padding_material = 0x7f050023; + public static final int abc_dialog_padding_top_material = 0x7f050024; + public static final int abc_dialog_title_divider_material = 0x7f050025; + public static final int abc_disabled_alpha_material_dark = 0x7f050026; + public static final int abc_disabled_alpha_material_light = 0x7f050027; + public static final int abc_dropdownitem_icon_width = 0x7f050028; + public static final int abc_dropdownitem_text_padding_left = 0x7f050029; + public static final int abc_dropdownitem_text_padding_right = 0x7f05002a; + public static final int abc_edit_text_inset_bottom_material = 0x7f05002b; + public static final int abc_edit_text_inset_horizontal_material = 0x7f05002c; + public static final int abc_edit_text_inset_top_material = 0x7f05002d; + public static final int abc_floating_window_z = 0x7f05002e; + public static final int abc_list_item_padding_horizontal_material = 0x7f05002f; + public static final int abc_panel_menu_list_width = 0x7f050030; + public static final int abc_progress_bar_height_material = 0x7f050031; + public static final int abc_search_view_preferred_height = 0x7f050032; + public static final int abc_search_view_preferred_width = 0x7f050033; + public static final int abc_seekbar_track_background_height_material = 0x7f050034; + public static final int abc_seekbar_track_progress_height_material = 0x7f050035; + public static final int abc_select_dialog_padding_start_material = 0x7f050036; + public static final int abc_switch_padding = 0x7f050037; + public static final int abc_text_size_body_1_material = 0x7f050038; + public static final int abc_text_size_body_2_material = 0x7f050039; + public static final int abc_text_size_button_material = 0x7f05003a; + public static final int abc_text_size_caption_material = 0x7f05003b; + public static final int abc_text_size_display_1_material = 0x7f05003c; + public static final int abc_text_size_display_2_material = 0x7f05003d; + public static final int abc_text_size_display_3_material = 0x7f05003e; + public static final int abc_text_size_display_4_material = 0x7f05003f; + public static final int abc_text_size_headline_material = 0x7f050040; + public static final int abc_text_size_large_material = 0x7f050041; + public static final int abc_text_size_medium_material = 0x7f050042; + public static final int abc_text_size_menu_header_material = 0x7f050043; + public static final int abc_text_size_menu_material = 0x7f050044; + public static final int abc_text_size_small_material = 0x7f050045; + public static final int abc_text_size_subhead_material = 0x7f050046; + public static final int abc_text_size_subtitle_material_toolbar = 0x7f050047; + public static final int abc_text_size_title_material = 0x7f050048; + public static final int abc_text_size_title_material_toolbar = 0x7f050049; + public static final int disabled_alpha_material_dark = 0x7f05004a; + public static final int disabled_alpha_material_light = 0x7f05004b; + public static final int highlight_alpha_material_colored = 0x7f05004c; + public static final int highlight_alpha_material_dark = 0x7f05004d; + public static final int highlight_alpha_material_light = 0x7f05004e; + public static final int hint_alpha_material_dark = 0x7f05004f; + public static final int hint_alpha_material_light = 0x7f050050; + public static final int hint_pressed_alpha_material_dark = 0x7f050051; + public static final int hint_pressed_alpha_material_light = 0x7f050052; + public static final int notification_action_icon_size = 0x7f050053; + public static final int notification_action_text_size = 0x7f050054; + public static final int notification_big_circle_margin = 0x7f050055; + public static final int notification_content_margin_start = 0x7f050056; + public static final int notification_large_icon_height = 0x7f050057; + public static final int notification_large_icon_width = 0x7f050058; + public static final int notification_main_column_padding_top = 0x7f050059; + public static final int notification_media_narrow_margin = 0x7f05005a; + public static final int notification_right_icon_size = 0x7f05005b; + public static final int notification_right_side_padding_top = 0x7f05005c; + public static final int notification_small_icon_background_padding = 0x7f05005d; + public static final int notification_small_icon_size_as_large = 0x7f05005e; + public static final int notification_subtext_size = 0x7f05005f; + public static final int notification_top_pad = 0x7f050060; + public static final int notification_top_pad_large_text = 0x7f050061; + } + public static final class drawable { + private drawable() {} + + public static final int abc_ab_share_pack_mtrl_alpha = 0x7f060000; + public static final int abc_action_bar_item_background_material = 0x7f060001; + public static final int abc_btn_borderless_material = 0x7f060002; + public static final int abc_btn_check_material = 0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000 = 0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015 = 0x7f060005; + public static final int abc_btn_colored_material = 0x7f060006; + public static final int abc_btn_default_mtrl_shape = 0x7f060007; + public static final int abc_btn_radio_material = 0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000 = 0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015 = 0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001 = 0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012 = 0x7f06000c; + public static final int abc_cab_background_internal_bg = 0x7f06000d; + public static final int abc_cab_background_top_material = 0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha = 0x7f06000f; + public static final int abc_control_background_material = 0x7f060010; + public static final int abc_dialog_material_background = 0x7f060011; + public static final int abc_edit_text_material = 0x7f060012; + public static final int abc_ic_ab_back_material = 0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp = 0x7f060014; + public static final int abc_ic_clear_material = 0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha = 0x7f060016; + public static final int abc_ic_go_search_api_material = 0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha = 0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha = 0x7f060019; + public static final int abc_ic_menu_overflow_material = 0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha = 0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha = 0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha = 0x7f06001d; + public static final int abc_ic_search_api_material = 0x7f06001e; + public static final int abc_ic_star_black_16dp = 0x7f06001f; + public static final int abc_ic_star_black_36dp = 0x7f060020; + public static final int abc_ic_star_black_48dp = 0x7f060021; + public static final int abc_ic_star_half_black_16dp = 0x7f060022; + public static final int abc_ic_star_half_black_36dp = 0x7f060023; + public static final int abc_ic_star_half_black_48dp = 0x7f060024; + public static final int abc_ic_voice_search_api_material = 0x7f060025; + public static final int abc_item_background_holo_dark = 0x7f060026; + public static final int abc_item_background_holo_light = 0x7f060027; + public static final int abc_list_divider_mtrl_alpha = 0x7f060028; + public static final int abc_list_focused_holo = 0x7f060029; + public static final int abc_list_longpressed_holo = 0x7f06002a; + public static final int abc_list_pressed_holo_dark = 0x7f06002b; + public static final int abc_list_pressed_holo_light = 0x7f06002c; + public static final int abc_list_selector_background_transition_holo_dark = 0x7f06002d; + public static final int abc_list_selector_background_transition_holo_light = 0x7f06002e; + public static final int abc_list_selector_disabled_holo_dark = 0x7f06002f; + public static final int abc_list_selector_disabled_holo_light = 0x7f060030; + public static final int abc_list_selector_holo_dark = 0x7f060031; + public static final int abc_list_selector_holo_light = 0x7f060032; + public static final int abc_menu_hardkey_panel_mtrl_mult = 0x7f060033; + public static final int abc_popup_background_mtrl_mult = 0x7f060034; + public static final int abc_ratingbar_indicator_material = 0x7f060035; + public static final int abc_ratingbar_material = 0x7f060036; + public static final int abc_ratingbar_small_material = 0x7f060037; + public static final int abc_scrubber_control_off_mtrl_alpha = 0x7f060038; + public static final int abc_scrubber_control_to_pressed_mtrl_000 = 0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_005 = 0x7f06003a; + public static final int abc_scrubber_primary_mtrl_alpha = 0x7f06003b; + public static final int abc_scrubber_track_mtrl_alpha = 0x7f06003c; + public static final int abc_seekbar_thumb_material = 0x7f06003d; + public static final int abc_seekbar_tick_mark_material = 0x7f06003e; + public static final int abc_seekbar_track_material = 0x7f06003f; + public static final int abc_spinner_mtrl_am_alpha = 0x7f060040; + public static final int abc_spinner_textfield_background_material = 0x7f060041; + public static final int abc_switch_thumb_material = 0x7f060042; + public static final int abc_switch_track_mtrl_alpha = 0x7f060043; + public static final int abc_tab_indicator_material = 0x7f060044; + public static final int abc_tab_indicator_mtrl_alpha = 0x7f060045; + public static final int abc_text_cursor_material = 0x7f060046; + public static final int abc_text_select_handle_left_mtrl_dark = 0x7f060047; + public static final int abc_text_select_handle_left_mtrl_light = 0x7f060048; + public static final int abc_text_select_handle_middle_mtrl_dark = 0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_light = 0x7f06004a; + public static final int abc_text_select_handle_right_mtrl_dark = 0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_light = 0x7f06004c; + public static final int abc_textfield_activated_mtrl_alpha = 0x7f06004d; + public static final int abc_textfield_default_mtrl_alpha = 0x7f06004e; + public static final int abc_textfield_search_activated_mtrl_alpha = 0x7f06004f; + public static final int abc_textfield_search_default_mtrl_alpha = 0x7f060050; + public static final int abc_textfield_search_material = 0x7f060051; + public static final int abc_vector_test = 0x7f060052; + public static final int cat = 0x7f060057; + public static final int container_backgroud = 0x7f060058; + public static final int notification_action_background = 0x7f06007c; + public static final int notification_bg = 0x7f06007d; + public static final int notification_bg_low = 0x7f06007e; + public static final int notification_bg_low_normal = 0x7f06007f; + public static final int notification_bg_low_pressed = 0x7f060080; + public static final int notification_bg_normal = 0x7f060081; + public static final int notification_bg_normal_pressed = 0x7f060082; + public static final int notification_icon_background = 0x7f060083; + public static final int notification_template_icon_bg = 0x7f060084; + public static final int notification_template_icon_low_bg = 0x7f060085; + public static final int notification_tile_bg = 0x7f060086; + public static final int notify_panel_notification_icon_bg = 0x7f060087; + public static final int po_seekbar = 0x7f060088; + public static final int refresh = 0x7f06008a; + public static final int right = 0x7f06008b; + public static final int thumb = 0x7f06008e; + public static final int wrong = 0x7f06009d; + } + public static final class id { + private id() {} + + public static final int accessFailed = 0x7f070000; + public static final int accessFailedText = 0x7f070001; + public static final int accessRight = 0x7f070002; + public static final int accessText = 0x7f070003; + public static final int action0 = 0x7f070004; + public static final int action_bar = 0x7f070005; + public static final int action_bar_activity_content = 0x7f070006; + public static final int action_bar_container = 0x7f070007; + public static final int action_bar_root = 0x7f070008; + public static final int action_bar_spinner = 0x7f070009; + public static final int action_bar_subtitle = 0x7f07000a; + public static final int action_bar_title = 0x7f07000b; + public static final int action_container = 0x7f07000c; + public static final int action_context_bar = 0x7f07000d; + public static final int action_divider = 0x7f07000e; + public static final int action_image = 0x7f07000f; + public static final int action_menu_divider = 0x7f070010; + public static final int action_menu_presenter = 0x7f070011; + public static final int action_mode_bar = 0x7f070012; + public static final int action_mode_bar_stub = 0x7f070013; + public static final int action_mode_close_button = 0x7f070014; + public static final int action_text = 0x7f070015; + public static final int actions = 0x7f070016; + public static final int activity_chooser_view_content = 0x7f070017; + public static final int add = 0x7f070018; + public static final int alertTitle = 0x7f070019; + public static final int always = 0x7f07001a; + public static final int beginning = 0x7f07001b; + public static final int bottom = 0x7f07001c; + public static final int buttonPanel = 0x7f070022; + public static final int cancel_action = 0x7f070023; + public static final int checkbox = 0x7f070026; + public static final int chronometer = 0x7f070027; + public static final int collapseActionView = 0x7f070028; + public static final int contentPanel = 0x7f070029; + public static final int custom = 0x7f07002a; + public static final int customPanel = 0x7f07002b; + public static final int decor_content_parent = 0x7f07002c; + public static final int default_activity_button = 0x7f07002d; + public static final int disableHome = 0x7f070031; + public static final int edit_query = 0x7f070032; + public static final int end = 0x7f070033; + public static final int end_padder = 0x7f070034; + public static final int expand_activities_button = 0x7f07003a; + public static final int expanded_menu = 0x7f07003b; + public static final int home = 0x7f07003e; + public static final int homeAsUp = 0x7f07003f; + public static final int icon = 0x7f070041; + public static final int icon_group = 0x7f070042; + public static final int ifRoom = 0x7f070043; + public static final int image = 0x7f070044; + public static final int info = 0x7f070047; + public static final int line1 = 0x7f070048; + public static final int line3 = 0x7f070049; + public static final int listMode = 0x7f07004b; + public static final int list_item = 0x7f07004c; + public static final int media_actions = 0x7f07004f; + public static final int middle = 0x7f070050; + public static final int mode_bar = 0x7f070051; + public static final int mode_nonbar = 0x7f070052; + public static final int multiply = 0x7f070053; + public static final int never = 0x7f070054; + public static final int none = 0x7f070055; + public static final int normal = 0x7f070056; + public static final int notification_background = 0x7f070058; + public static final int notification_main_column = 0x7f070059; + public static final int notification_main_column_container = 0x7f07005a; + public static final int parentPanel = 0x7f07005b; + public static final int progress_circular = 0x7f07005d; + public static final int progress_horizontal = 0x7f07005e; + public static final int radio = 0x7f07005f; + public static final int refresh = 0x7f070060; + public static final int right_icon = 0x7f070061; + public static final int right_side = 0x7f070062; + public static final int screen = 0x7f070063; + public static final int scrollIndicatorDown = 0x7f070064; + public static final int scrollIndicatorUp = 0x7f070065; + public static final int scrollView = 0x7f070066; + public static final int search_badge = 0x7f070067; + public static final int search_bar = 0x7f070068; + public static final int search_button = 0x7f070069; + public static final int search_close_btn = 0x7f07006a; + public static final int search_edit_frame = 0x7f07006b; + public static final int search_go_btn = 0x7f07006c; + public static final int search_mag_icon = 0x7f07006d; + public static final int search_plate = 0x7f07006e; + public static final int search_src_text = 0x7f07006f; + public static final int search_voice_btn = 0x7f070070; + public static final int seekbar = 0x7f070071; + public static final int select_dialog_listview = 0x7f070072; + public static final int shortcut = 0x7f070073; + public static final int showCustom = 0x7f070074; + public static final int showHome = 0x7f070075; + public static final int showTitle = 0x7f070076; + public static final int spacer = 0x7f070077; + public static final int split_action_bar = 0x7f070078; + public static final int src_atop = 0x7f070079; + public static final int src_in = 0x7f07007a; + public static final int src_over = 0x7f07007b; + public static final int status_bar_latest_event_content = 0x7f07007c; + public static final int submenuarrow = 0x7f07007d; + public static final int submit_area = 0x7f07007e; + public static final int tabMode = 0x7f07007f; + public static final int text = 0x7f070080; + public static final int text2 = 0x7f070081; + public static final int textSpacerNoButtons = 0x7f070082; + public static final int textSpacerNoTitle = 0x7f070083; + public static final int time = 0x7f070084; + public static final int title = 0x7f070085; + public static final int titleDividerNoCustom = 0x7f070086; + public static final int title_template = 0x7f070087; + public static final int top = 0x7f070088; + public static final int topPanel = 0x7f070089; + public static final int up = 0x7f070090; + public static final int useLogo = 0x7f070091; + public static final int vertifyView = 0x7f070092; + public static final int withText = 0x7f0700a1; + public static final int wrap_content = 0x7f0700a2; + } + public static final class integer { + private integer() {} + + public static final int abc_config_activityDefaultDur = 0x7f080000; + public static final int abc_config_activityShortDur = 0x7f080001; + public static final int cancel_button_image_alpha = 0x7f080002; + public static final int status_bar_notification_info_maxnum = 0x7f080003; + } + public static final class layout { + private layout() {} + + public static final int abc_action_bar_title_item = 0x7f090000; + public static final int abc_action_bar_up_container = 0x7f090001; + public static final int abc_action_bar_view_list_nav_layout = 0x7f090002; + public static final int abc_action_menu_item_layout = 0x7f090003; + public static final int abc_action_menu_layout = 0x7f090004; + public static final int abc_action_mode_bar = 0x7f090005; + public static final int abc_action_mode_close_item_material = 0x7f090006; + public static final int abc_activity_chooser_view = 0x7f090007; + public static final int abc_activity_chooser_view_list_item = 0x7f090008; + public static final int abc_alert_dialog_button_bar_material = 0x7f090009; + public static final int abc_alert_dialog_material = 0x7f09000a; + public static final int abc_alert_dialog_title_material = 0x7f09000b; + public static final int abc_dialog_title_material = 0x7f09000c; + public static final int abc_expanded_menu_layout = 0x7f09000d; + public static final int abc_list_menu_item_checkbox = 0x7f09000e; + public static final int abc_list_menu_item_icon = 0x7f09000f; + public static final int abc_list_menu_item_layout = 0x7f090010; + public static final int abc_list_menu_item_radio = 0x7f090011; + public static final int abc_popup_menu_header_item_layout = 0x7f090012; + public static final int abc_popup_menu_item_layout = 0x7f090013; + public static final int abc_screen_content_include = 0x7f090014; + public static final int abc_screen_simple = 0x7f090015; + public static final int abc_screen_simple_overlay_action_mode = 0x7f090016; + public static final int abc_screen_toolbar = 0x7f090017; + public static final int abc_search_dropdown_item_icons_2line = 0x7f090018; + public static final int abc_search_view = 0x7f090019; + public static final int abc_select_dialog_material = 0x7f09001a; + public static final int container = 0x7f09001c; + public static final int notification_action = 0x7f090026; + public static final int notification_action_tombstone = 0x7f090027; + public static final int notification_media_action = 0x7f090028; + public static final int notification_media_cancel_action = 0x7f090029; + public static final int notification_template_big_media = 0x7f09002a; + public static final int notification_template_big_media_custom = 0x7f09002b; + public static final int notification_template_big_media_narrow = 0x7f09002c; + public static final int notification_template_big_media_narrow_custom = 0x7f09002d; + public static final int notification_template_custom_big = 0x7f09002e; + public static final int notification_template_icon_group = 0x7f09002f; + public static final int notification_template_lines_media = 0x7f090030; + public static final int notification_template_media = 0x7f090031; + public static final int notification_template_media_custom = 0x7f090032; + public static final int notification_template_part_chronometer = 0x7f090033; + public static final int notification_template_part_time = 0x7f090034; + public static final int select_dialog_item_material = 0x7f090035; + public static final int select_dialog_multichoice_material = 0x7f090036; + public static final int select_dialog_singlechoice_material = 0x7f090037; + public static final int support_simple_spinner_dropdown_item = 0x7f090039; + } + public static final class string { + private string() {} + + public static final int abc_action_bar_home_description = 0x7f0c0002; + public static final int abc_action_bar_home_description_format = 0x7f0c0003; + public static final int abc_action_bar_home_subtitle_description_format = 0x7f0c0004; + public static final int abc_action_bar_up_description = 0x7f0c0005; + public static final int abc_action_menu_overflow_description = 0x7f0c0006; + public static final int abc_action_mode_done = 0x7f0c0007; + public static final int abc_activity_chooser_view_see_all = 0x7f0c0008; + public static final int abc_activitychooserview_choose_application = 0x7f0c0009; + public static final int abc_capital_off = 0x7f0c000a; + public static final int abc_capital_on = 0x7f0c000b; + public static final int abc_font_family_body_1_material = 0x7f0c000c; + public static final int abc_font_family_body_2_material = 0x7f0c000d; + public static final int abc_font_family_button_material = 0x7f0c000e; + public static final int abc_font_family_caption_material = 0x7f0c000f; + public static final int abc_font_family_display_1_material = 0x7f0c0010; + public static final int abc_font_family_display_2_material = 0x7f0c0011; + public static final int abc_font_family_display_3_material = 0x7f0c0012; + public static final int abc_font_family_display_4_material = 0x7f0c0013; + public static final int abc_font_family_headline_material = 0x7f0c0014; + public static final int abc_font_family_menu_material = 0x7f0c0015; + public static final int abc_font_family_subhead_material = 0x7f0c0016; + public static final int abc_font_family_title_material = 0x7f0c0017; + public static final int abc_search_hint = 0x7f0c0018; + public static final int abc_searchview_description_clear = 0x7f0c0019; + public static final int abc_searchview_description_query = 0x7f0c001a; + public static final int abc_searchview_description_search = 0x7f0c001b; + public static final int abc_searchview_description_submit = 0x7f0c001c; + public static final int abc_searchview_description_voice = 0x7f0c001d; + public static final int abc_shareactionprovider_share_with = 0x7f0c001e; + public static final int abc_shareactionprovider_share_with_application = 0x7f0c001f; + public static final int abc_toolbar_collapse_description = 0x7f0c0020; + public static final int app_name = 0x7f0c0024; + public static final int search_menu_title = 0x7f0c0040; + public static final int status_bar_notification_info_overflow = 0x7f0c0049; + public static final int vertify_access = 0x7f0c004a; + public static final int vertify_failed = 0x7f0c004b; + } + public static final class style { + private style() {} + + public static final int AlertDialog_AppCompat = 0x7f0d0000; + public static final int AlertDialog_AppCompat_Light = 0x7f0d0001; + public static final int Animation_AppCompat_Dialog = 0x7f0d0002; + public static final int Animation_AppCompat_DropDownUp = 0x7f0d0003; + public static final int Base_AlertDialog_AppCompat = 0x7f0d0005; + public static final int Base_AlertDialog_AppCompat_Light = 0x7f0d0006; + public static final int Base_Animation_AppCompat_Dialog = 0x7f0d0007; + public static final int Base_Animation_AppCompat_DropDownUp = 0x7f0d0008; + public static final int Base_DialogWindowTitleBackground_AppCompat = 0x7f0d000a; + public static final int Base_DialogWindowTitle_AppCompat = 0x7f0d0009; + public static final int Base_TextAppearance_AppCompat = 0x7f0d000b; + public static final int Base_TextAppearance_AppCompat_Body1 = 0x7f0d000c; + public static final int Base_TextAppearance_AppCompat_Body2 = 0x7f0d000d; + public static final int Base_TextAppearance_AppCompat_Button = 0x7f0d000e; + public static final int Base_TextAppearance_AppCompat_Caption = 0x7f0d000f; + public static final int Base_TextAppearance_AppCompat_Display1 = 0x7f0d0010; + public static final int Base_TextAppearance_AppCompat_Display2 = 0x7f0d0011; + public static final int Base_TextAppearance_AppCompat_Display3 = 0x7f0d0012; + public static final int Base_TextAppearance_AppCompat_Display4 = 0x7f0d0013; + public static final int Base_TextAppearance_AppCompat_Headline = 0x7f0d0014; + public static final int Base_TextAppearance_AppCompat_Inverse = 0x7f0d0015; + public static final int Base_TextAppearance_AppCompat_Large = 0x7f0d0016; + public static final int Base_TextAppearance_AppCompat_Large_Inverse = 0x7f0d0017; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d0018; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d0019; + public static final int Base_TextAppearance_AppCompat_Medium = 0x7f0d001a; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse = 0x7f0d001b; + public static final int Base_TextAppearance_AppCompat_Menu = 0x7f0d001c; + public static final int Base_TextAppearance_AppCompat_SearchResult = 0x7f0d001d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d001e; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title = 0x7f0d001f; + public static final int Base_TextAppearance_AppCompat_Small = 0x7f0d0020; + public static final int Base_TextAppearance_AppCompat_Small_Inverse = 0x7f0d0021; + public static final int Base_TextAppearance_AppCompat_Subhead = 0x7f0d0022; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d0023; + public static final int Base_TextAppearance_AppCompat_Title = 0x7f0d0024; + public static final int Base_TextAppearance_AppCompat_Title_Inverse = 0x7f0d0025; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d0026; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d0027; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d0028; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d002c; + public static final int Base_TextAppearance_AppCompat_Widget_Button = 0x7f0d002d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d002e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d002f; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d0030; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d0031; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d0032; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d0033; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d0034; + public static final int Base_TextAppearance_AppCompat_Widget_Switch = 0x7f0d0035; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d0036; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d0037; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d0038; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d0039; + public static final int Base_ThemeOverlay_AppCompat = 0x7f0d0048; + public static final int Base_ThemeOverlay_AppCompat_ActionBar = 0x7f0d0049; + public static final int Base_ThemeOverlay_AppCompat_Dark = 0x7f0d004a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d004b; + public static final int Base_ThemeOverlay_AppCompat_Dialog = 0x7f0d004c; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d004d; + public static final int Base_ThemeOverlay_AppCompat_Light = 0x7f0d004e; + public static final int Base_Theme_AppCompat = 0x7f0d003a; + public static final int Base_Theme_AppCompat_CompactMenu = 0x7f0d003b; + public static final int Base_Theme_AppCompat_Dialog = 0x7f0d003c; + public static final int Base_Theme_AppCompat_DialogWhenLarge = 0x7f0d0040; + public static final int Base_Theme_AppCompat_Dialog_Alert = 0x7f0d003d; + public static final int Base_Theme_AppCompat_Dialog_FixedSize = 0x7f0d003e; + public static final int Base_Theme_AppCompat_Dialog_MinWidth = 0x7f0d003f; + public static final int Base_Theme_AppCompat_Light = 0x7f0d0041; + public static final int Base_Theme_AppCompat_Light_DarkActionBar = 0x7f0d0042; + public static final int Base_Theme_AppCompat_Light_Dialog = 0x7f0d0043; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d0047; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert = 0x7f0d0044; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize = 0x7f0d0045; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d0046; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog = 0x7f0d0051; + public static final int Base_V11_Theme_AppCompat_Dialog = 0x7f0d004f; + public static final int Base_V11_Theme_AppCompat_Light_Dialog = 0x7f0d0050; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0052; + public static final int Base_V12_Widget_AppCompat_EditText = 0x7f0d0053; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog = 0x7f0d0058; + public static final int Base_V21_Theme_AppCompat = 0x7f0d0054; + public static final int Base_V21_Theme_AppCompat_Dialog = 0x7f0d0055; + public static final int Base_V21_Theme_AppCompat_Light = 0x7f0d0056; + public static final int Base_V21_Theme_AppCompat_Light_Dialog = 0x7f0d0057; + public static final int Base_V22_Theme_AppCompat = 0x7f0d0059; + public static final int Base_V22_Theme_AppCompat_Light = 0x7f0d005a; + public static final int Base_V23_Theme_AppCompat = 0x7f0d005b; + public static final int Base_V23_Theme_AppCompat_Light = 0x7f0d005c; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog = 0x7f0d0061; + public static final int Base_V7_Theme_AppCompat = 0x7f0d005d; + public static final int Base_V7_Theme_AppCompat_Dialog = 0x7f0d005e; + public static final int Base_V7_Theme_AppCompat_Light = 0x7f0d005f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog = 0x7f0d0060; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView = 0x7f0d0062; + public static final int Base_V7_Widget_AppCompat_EditText = 0x7f0d0063; + public static final int Base_Widget_AppCompat_ActionBar = 0x7f0d0064; + public static final int Base_Widget_AppCompat_ActionBar_Solid = 0x7f0d0065; + public static final int Base_Widget_AppCompat_ActionBar_TabBar = 0x7f0d0066; + public static final int Base_Widget_AppCompat_ActionBar_TabText = 0x7f0d0067; + public static final int Base_Widget_AppCompat_ActionBar_TabView = 0x7f0d0068; + public static final int Base_Widget_AppCompat_ActionButton = 0x7f0d0069; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode = 0x7f0d006a; + public static final int Base_Widget_AppCompat_ActionButton_Overflow = 0x7f0d006b; + public static final int Base_Widget_AppCompat_ActionMode = 0x7f0d006c; + public static final int Base_Widget_AppCompat_ActivityChooserView = 0x7f0d006d; + public static final int Base_Widget_AppCompat_AutoCompleteTextView = 0x7f0d006e; + public static final int Base_Widget_AppCompat_Button = 0x7f0d006f; + public static final int Base_Widget_AppCompat_ButtonBar = 0x7f0d0075; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d0076; + public static final int Base_Widget_AppCompat_Button_Borderless = 0x7f0d0070; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0071; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0072; + public static final int Base_Widget_AppCompat_Button_Colored = 0x7f0d0073; + public static final int Base_Widget_AppCompat_Button_Small = 0x7f0d0074; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d0077; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d0078; + public static final int Base_Widget_AppCompat_CompoundButton_Switch = 0x7f0d0079; + public static final int Base_Widget_AppCompat_DrawerArrowToggle = 0x7f0d007a; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common = 0x7f0d007b; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner = 0x7f0d007c; + public static final int Base_Widget_AppCompat_EditText = 0x7f0d007d; + public static final int Base_Widget_AppCompat_ImageButton = 0x7f0d007e; + public static final int Base_Widget_AppCompat_Light_ActionBar = 0x7f0d007f; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0080; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0081; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d0082; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d0083; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d0084; + public static final int Base_Widget_AppCompat_Light_PopupMenu = 0x7f0d0085; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0086; + public static final int Base_Widget_AppCompat_ListMenuView = 0x7f0d0087; + public static final int Base_Widget_AppCompat_ListPopupWindow = 0x7f0d0088; + public static final int Base_Widget_AppCompat_ListView = 0x7f0d0089; + public static final int Base_Widget_AppCompat_ListView_DropDown = 0x7f0d008a; + public static final int Base_Widget_AppCompat_ListView_Menu = 0x7f0d008b; + public static final int Base_Widget_AppCompat_PopupMenu = 0x7f0d008c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow = 0x7f0d008d; + public static final int Base_Widget_AppCompat_PopupWindow = 0x7f0d008e; + public static final int Base_Widget_AppCompat_ProgressBar = 0x7f0d008f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0090; + public static final int Base_Widget_AppCompat_RatingBar = 0x7f0d0091; + public static final int Base_Widget_AppCompat_RatingBar_Indicator = 0x7f0d0092; + public static final int Base_Widget_AppCompat_RatingBar_Small = 0x7f0d0093; + public static final int Base_Widget_AppCompat_SearchView = 0x7f0d0094; + public static final int Base_Widget_AppCompat_SearchView_ActionBar = 0x7f0d0095; + public static final int Base_Widget_AppCompat_SeekBar = 0x7f0d0096; + public static final int Base_Widget_AppCompat_SeekBar_Discrete = 0x7f0d0097; + public static final int Base_Widget_AppCompat_Spinner = 0x7f0d0098; + public static final int Base_Widget_AppCompat_Spinner_Underlined = 0x7f0d0099; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem = 0x7f0d009a; + public static final int Base_Widget_AppCompat_Toolbar = 0x7f0d009b; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d009c; + public static final int MySeekbarSytle = 0x7f0d009e; + public static final int Platform_AppCompat = 0x7f0d009f; + public static final int Platform_AppCompat_Light = 0x7f0d00a0; + public static final int Platform_ThemeOverlay_AppCompat = 0x7f0d00a1; + public static final int Platform_ThemeOverlay_AppCompat_Dark = 0x7f0d00a2; + public static final int Platform_ThemeOverlay_AppCompat_Light = 0x7f0d00a3; + public static final int Platform_V11_AppCompat = 0x7f0d00a4; + public static final int Platform_V11_AppCompat_Light = 0x7f0d00a5; + public static final int Platform_V14_AppCompat = 0x7f0d00a6; + public static final int Platform_V14_AppCompat_Light = 0x7f0d00a7; + public static final int Platform_V21_AppCompat = 0x7f0d00a8; + public static final int Platform_V21_AppCompat_Light = 0x7f0d00a9; + public static final int Platform_V25_AppCompat = 0x7f0d00aa; + public static final int Platform_V25_AppCompat_Light = 0x7f0d00ab; + public static final int Platform_Widget_AppCompat_Spinner = 0x7f0d00ac; + public static final int RtlOverlay_DialogWindowTitle_AppCompat = 0x7f0d00ad; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 0x7f0d00ae; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 0x7f0d00af; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem = 0x7f0d00b0; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 0x7f0d00b1; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 0x7f0d00b2; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 0x7f0d00b8; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown = 0x7f0d00b3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 0x7f0d00b4; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 0x7f0d00b5; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 0x7f0d00b6; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 0x7f0d00b7; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton = 0x7f0d00b9; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 0x7f0d00ba; + public static final int TextAppearance_AppCompat = 0x7f0d00bb; + public static final int TextAppearance_AppCompat_Body1 = 0x7f0d00bc; + public static final int TextAppearance_AppCompat_Body2 = 0x7f0d00bd; + public static final int TextAppearance_AppCompat_Button = 0x7f0d00be; + public static final int TextAppearance_AppCompat_Caption = 0x7f0d00bf; + public static final int TextAppearance_AppCompat_Display1 = 0x7f0d00c0; + public static final int TextAppearance_AppCompat_Display2 = 0x7f0d00c1; + public static final int TextAppearance_AppCompat_Display3 = 0x7f0d00c2; + public static final int TextAppearance_AppCompat_Display4 = 0x7f0d00c3; + public static final int TextAppearance_AppCompat_Headline = 0x7f0d00c4; + public static final int TextAppearance_AppCompat_Inverse = 0x7f0d00c5; + public static final int TextAppearance_AppCompat_Large = 0x7f0d00c6; + public static final int TextAppearance_AppCompat_Large_Inverse = 0x7f0d00c7; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 0x7f0d00c8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title = 0x7f0d00c9; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 0x7f0d00ca; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 0x7f0d00cb; + public static final int TextAppearance_AppCompat_Medium = 0x7f0d00cc; + public static final int TextAppearance_AppCompat_Medium_Inverse = 0x7f0d00cd; + public static final int TextAppearance_AppCompat_Menu = 0x7f0d00ce; + public static final int TextAppearance_AppCompat_Notification = 0x7f0d00cf; + public static final int TextAppearance_AppCompat_Notification_Info = 0x7f0d00d0; + public static final int TextAppearance_AppCompat_Notification_Info_Media = 0x7f0d00d1; + public static final int TextAppearance_AppCompat_Notification_Line2 = 0x7f0d00d2; + public static final int TextAppearance_AppCompat_Notification_Line2_Media = 0x7f0d00d3; + public static final int TextAppearance_AppCompat_Notification_Media = 0x7f0d00d4; + public static final int TextAppearance_AppCompat_Notification_Time = 0x7f0d00d5; + public static final int TextAppearance_AppCompat_Notification_Time_Media = 0x7f0d00d6; + public static final int TextAppearance_AppCompat_Notification_Title = 0x7f0d00d7; + public static final int TextAppearance_AppCompat_Notification_Title_Media = 0x7f0d00d8; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle = 0x7f0d00d9; + public static final int TextAppearance_AppCompat_SearchResult_Title = 0x7f0d00da; + public static final int TextAppearance_AppCompat_Small = 0x7f0d00db; + public static final int TextAppearance_AppCompat_Small_Inverse = 0x7f0d00dc; + public static final int TextAppearance_AppCompat_Subhead = 0x7f0d00dd; + public static final int TextAppearance_AppCompat_Subhead_Inverse = 0x7f0d00de; + public static final int TextAppearance_AppCompat_Title = 0x7f0d00df; + public static final int TextAppearance_AppCompat_Title_Inverse = 0x7f0d00e0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu = 0x7f0d00e1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 0x7f0d00e2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 0x7f0d00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title = 0x7f0d00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 0x7f0d00e5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 0x7f0d00e6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 0x7f0d00e7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title = 0x7f0d00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 0x7f0d00e9; + public static final int TextAppearance_AppCompat_Widget_Button = 0x7f0d00ea; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 0x7f0d00eb; + public static final int TextAppearance_AppCompat_Widget_Button_Colored = 0x7f0d00ec; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse = 0x7f0d00ed; + public static final int TextAppearance_AppCompat_Widget_DropDownItem = 0x7f0d00ee; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header = 0x7f0d00ef; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large = 0x7f0d00f0; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small = 0x7f0d00f1; + public static final int TextAppearance_AppCompat_Widget_Switch = 0x7f0d00f2; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 0x7f0d00f3; + public static final int TextAppearance_StatusBar_EventContent = 0x7f0d00f4; + public static final int TextAppearance_StatusBar_EventContent_Info = 0x7f0d00f5; + public static final int TextAppearance_StatusBar_EventContent_Line2 = 0x7f0d00f6; + public static final int TextAppearance_StatusBar_EventContent_Time = 0x7f0d00f7; + public static final int TextAppearance_StatusBar_EventContent_Title = 0x7f0d00f8; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 0x7f0d00f9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 0x7f0d00fa; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title = 0x7f0d00fb; + public static final int ThemeOverlay_AppCompat = 0x7f0d0111; + public static final int ThemeOverlay_AppCompat_ActionBar = 0x7f0d0112; + public static final int ThemeOverlay_AppCompat_Dark = 0x7f0d0113; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar = 0x7f0d0114; + public static final int ThemeOverlay_AppCompat_Dialog = 0x7f0d0115; + public static final int ThemeOverlay_AppCompat_Dialog_Alert = 0x7f0d0116; + public static final int ThemeOverlay_AppCompat_Light = 0x7f0d0117; + public static final int Theme_AppCompat = 0x7f0d00fc; + public static final int Theme_AppCompat_CompactMenu = 0x7f0d00fd; + public static final int Theme_AppCompat_DayNight = 0x7f0d00fe; + public static final int Theme_AppCompat_DayNight_DarkActionBar = 0x7f0d00ff; + public static final int Theme_AppCompat_DayNight_Dialog = 0x7f0d0100; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge = 0x7f0d0103; + public static final int Theme_AppCompat_DayNight_Dialog_Alert = 0x7f0d0101; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth = 0x7f0d0102; + public static final int Theme_AppCompat_DayNight_NoActionBar = 0x7f0d0104; + public static final int Theme_AppCompat_Dialog = 0x7f0d0105; + public static final int Theme_AppCompat_DialogWhenLarge = 0x7f0d0108; + public static final int Theme_AppCompat_Dialog_Alert = 0x7f0d0106; + public static final int Theme_AppCompat_Dialog_MinWidth = 0x7f0d0107; + public static final int Theme_AppCompat_Light = 0x7f0d0109; + public static final int Theme_AppCompat_Light_DarkActionBar = 0x7f0d010a; + public static final int Theme_AppCompat_Light_Dialog = 0x7f0d010b; + public static final int Theme_AppCompat_Light_DialogWhenLarge = 0x7f0d010e; + public static final int Theme_AppCompat_Light_Dialog_Alert = 0x7f0d010c; + public static final int Theme_AppCompat_Light_Dialog_MinWidth = 0x7f0d010d; + public static final int Theme_AppCompat_Light_NoActionBar = 0x7f0d010f; + public static final int Theme_AppCompat_NoActionBar = 0x7f0d0110; + public static final int Widget_AppCompat_ActionBar = 0x7f0d011b; + public static final int Widget_AppCompat_ActionBar_Solid = 0x7f0d011c; + public static final int Widget_AppCompat_ActionBar_TabBar = 0x7f0d011d; + public static final int Widget_AppCompat_ActionBar_TabText = 0x7f0d011e; + public static final int Widget_AppCompat_ActionBar_TabView = 0x7f0d011f; + public static final int Widget_AppCompat_ActionButton = 0x7f0d0120; + public static final int Widget_AppCompat_ActionButton_CloseMode = 0x7f0d0121; + public static final int Widget_AppCompat_ActionButton_Overflow = 0x7f0d0122; + public static final int Widget_AppCompat_ActionMode = 0x7f0d0123; + public static final int Widget_AppCompat_ActivityChooserView = 0x7f0d0124; + public static final int Widget_AppCompat_AutoCompleteTextView = 0x7f0d0125; + public static final int Widget_AppCompat_Button = 0x7f0d0126; + public static final int Widget_AppCompat_ButtonBar = 0x7f0d012c; + public static final int Widget_AppCompat_ButtonBar_AlertDialog = 0x7f0d012d; + public static final int Widget_AppCompat_Button_Borderless = 0x7f0d0127; + public static final int Widget_AppCompat_Button_Borderless_Colored = 0x7f0d0128; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog = 0x7f0d0129; + public static final int Widget_AppCompat_Button_Colored = 0x7f0d012a; + public static final int Widget_AppCompat_Button_Small = 0x7f0d012b; + public static final int Widget_AppCompat_CompoundButton_CheckBox = 0x7f0d012e; + public static final int Widget_AppCompat_CompoundButton_RadioButton = 0x7f0d012f; + public static final int Widget_AppCompat_CompoundButton_Switch = 0x7f0d0130; + public static final int Widget_AppCompat_DrawerArrowToggle = 0x7f0d0131; + public static final int Widget_AppCompat_DropDownItem_Spinner = 0x7f0d0132; + public static final int Widget_AppCompat_EditText = 0x7f0d0133; + public static final int Widget_AppCompat_ImageButton = 0x7f0d0134; + public static final int Widget_AppCompat_Light_ActionBar = 0x7f0d0135; + public static final int Widget_AppCompat_Light_ActionBar_Solid = 0x7f0d0136; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 0x7f0d0137; + public static final int Widget_AppCompat_Light_ActionBar_TabBar = 0x7f0d0138; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 0x7f0d0139; + public static final int Widget_AppCompat_Light_ActionBar_TabText = 0x7f0d013a; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 0x7f0d013b; + public static final int Widget_AppCompat_Light_ActionBar_TabView = 0x7f0d013c; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 0x7f0d013d; + public static final int Widget_AppCompat_Light_ActionButton = 0x7f0d013e; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode = 0x7f0d013f; + public static final int Widget_AppCompat_Light_ActionButton_Overflow = 0x7f0d0140; + public static final int Widget_AppCompat_Light_ActionMode_Inverse = 0x7f0d0141; + public static final int Widget_AppCompat_Light_ActivityChooserView = 0x7f0d0142; + public static final int Widget_AppCompat_Light_AutoCompleteTextView = 0x7f0d0143; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner = 0x7f0d0144; + public static final int Widget_AppCompat_Light_ListPopupWindow = 0x7f0d0145; + public static final int Widget_AppCompat_Light_ListView_DropDown = 0x7f0d0146; + public static final int Widget_AppCompat_Light_PopupMenu = 0x7f0d0147; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow = 0x7f0d0148; + public static final int Widget_AppCompat_Light_SearchView = 0x7f0d0149; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 0x7f0d014a; + public static final int Widget_AppCompat_ListMenuView = 0x7f0d014b; + public static final int Widget_AppCompat_ListPopupWindow = 0x7f0d014c; + public static final int Widget_AppCompat_ListView = 0x7f0d014d; + public static final int Widget_AppCompat_ListView_DropDown = 0x7f0d014e; + public static final int Widget_AppCompat_ListView_Menu = 0x7f0d014f; + public static final int Widget_AppCompat_NotificationActionContainer = 0x7f0d0150; + public static final int Widget_AppCompat_NotificationActionText = 0x7f0d0151; + public static final int Widget_AppCompat_PopupMenu = 0x7f0d0152; + public static final int Widget_AppCompat_PopupMenu_Overflow = 0x7f0d0153; + public static final int Widget_AppCompat_PopupWindow = 0x7f0d0154; + public static final int Widget_AppCompat_ProgressBar = 0x7f0d0155; + public static final int Widget_AppCompat_ProgressBar_Horizontal = 0x7f0d0156; + public static final int Widget_AppCompat_RatingBar = 0x7f0d0157; + public static final int Widget_AppCompat_RatingBar_Indicator = 0x7f0d0158; + public static final int Widget_AppCompat_RatingBar_Small = 0x7f0d0159; + public static final int Widget_AppCompat_SearchView = 0x7f0d015a; + public static final int Widget_AppCompat_SearchView_ActionBar = 0x7f0d015b; + public static final int Widget_AppCompat_SeekBar = 0x7f0d015c; + public static final int Widget_AppCompat_SeekBar_Discrete = 0x7f0d015d; + public static final int Widget_AppCompat_Spinner = 0x7f0d015e; + public static final int Widget_AppCompat_Spinner_DropDown = 0x7f0d015f; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar = 0x7f0d0160; + public static final int Widget_AppCompat_Spinner_Underlined = 0x7f0d0161; + public static final int Widget_AppCompat_TextView_SpinnerItem = 0x7f0d0162; + public static final int Widget_AppCompat_Toolbar = 0x7f0d0163; + public static final int Widget_AppCompat_Toolbar_Button_Navigation = 0x7f0d0164; + } + public static final class styleable { + private styleable() {} + + public static final int[] ActionBar = { 0x7f02002b, 0x7f02002c, 0x7f02002d, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020056, 0x7f02005a, 0x7f02005b, 0x7f020066, 0x7f02006a, 0x7f02006b, 0x7f02006c, 0x7f02006d, 0x7f02006e, 0x7f020071, 0x7f020074, 0x7f020081, 0x7f02008a, 0x7f020094, 0x7f020097, 0x7f020098, 0x7f0200b4, 0x7f0200b7, 0x7f0200d0, 0x7f0200d9 }; + public static final int ActionBar_background = 0; + public static final int ActionBar_backgroundSplit = 1; + public static final int ActionBar_backgroundStacked = 2; + public static final int ActionBar_contentInsetEnd = 3; + public static final int ActionBar_contentInsetEndWithActions = 4; + public static final int ActionBar_contentInsetLeft = 5; + public static final int ActionBar_contentInsetRight = 6; + public static final int ActionBar_contentInsetStart = 7; + public static final int ActionBar_contentInsetStartWithNavigation = 8; + public static final int ActionBar_customNavigationLayout = 9; + public static final int ActionBar_displayOptions = 10; + public static final int ActionBar_divider = 11; + public static final int ActionBar_elevation = 12; + public static final int ActionBar_height = 13; + public static final int ActionBar_hideOnContentScroll = 14; + public static final int ActionBar_homeAsUpIndicator = 15; + public static final int ActionBar_homeLayout = 16; + public static final int ActionBar_icon = 17; + public static final int ActionBar_indeterminateProgressStyle = 18; + public static final int ActionBar_itemPadding = 19; + public static final int ActionBar_logo = 20; + public static final int ActionBar_navigationMode = 21; + public static final int ActionBar_popupTheme = 22; + public static final int ActionBar_progressBarPadding = 23; + public static final int ActionBar_progressBarStyle = 24; + public static final int ActionBar_subtitle = 25; + public static final int ActionBar_subtitleTextStyle = 26; + public static final int ActionBar_title = 27; + public static final int ActionBar_titleTextStyle = 28; + public static final int[] ActionBarLayout = { 0x10100b3 }; + public static final int ActionBarLayout_android_layout_gravity = 0; + public static final int[] ActionMenuItemView = { 0x101013f }; + public static final int ActionMenuItemView_android_minWidth = 0; + public static final int[] ActionMenuView = { }; + public static final int[] ActionMode = { 0x7f02002b, 0x7f02002c, 0x7f020041, 0x7f02006a, 0x7f0200b7, 0x7f0200d9 }; + public static final int ActionMode_background = 0; + public static final int ActionMode_backgroundSplit = 1; + public static final int ActionMode_closeItemLayout = 2; + public static final int ActionMode_height = 3; + public static final int ActionMode_subtitleTextStyle = 4; + public static final int ActionMode_titleTextStyle = 5; + public static final int[] ActivityChooserView = { 0x7f020067, 0x7f020072 }; + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 0; + public static final int ActivityChooserView_initialActivityCount = 1; + public static final int[] AlertDialog = { 0x10100f2, 0x7f020039, 0x7f020078, 0x7f020079, 0x7f020087, 0x7f0200a9, 0x7f0200aa }; + public static final int AlertDialog_android_layout = 0; + public static final int AlertDialog_buttonPanelSideLayout = 1; + public static final int AlertDialog_listItemLayout = 2; + public static final int AlertDialog_listLayout = 3; + public static final int AlertDialog_multiChoiceItemLayout = 4; + public static final int AlertDialog_showTitle = 5; + public static final int AlertDialog_singleChoiceItemLayout = 6; + public static final int[] AppCompatImageView = { 0x1010119, 0x7f0200b0 }; + public static final int AppCompatImageView_android_src = 0; + public static final int AppCompatImageView_srcCompat = 1; + public static final int[] AppCompatSeekBar = { 0x1010142, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf }; + public static final int AppCompatSeekBar_android_thumb = 0; + public static final int AppCompatSeekBar_tickMark = 1; + public static final int AppCompatSeekBar_tickMarkTint = 2; + public static final int AppCompatSeekBar_tickMarkTintMode = 3; + public static final int[] AppCompatTextHelper = { 0x1010034, 0x101016d, 0x101016e, 0x101016f, 0x1010170, 0x1010392, 0x1010393 }; + public static final int AppCompatTextHelper_android_textAppearance = 0; + public static final int AppCompatTextHelper_android_drawableTop = 1; + public static final int AppCompatTextHelper_android_drawableBottom = 2; + public static final int AppCompatTextHelper_android_drawableLeft = 3; + public static final int AppCompatTextHelper_android_drawableRight = 4; + public static final int AppCompatTextHelper_android_drawableStart = 5; + public static final int AppCompatTextHelper_android_drawableEnd = 6; + public static final int[] AppCompatTextView = { 0x1010034, 0x7f0200bd }; + public static final int AppCompatTextView_android_textAppearance = 0; + public static final int AppCompatTextView_textAllCaps = 1; + public static final int[] AppCompatTheme = { 0x1010057, 0x10100ae, 0x7f020000, 0x7f020001, 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, 0x7f020025, 0x7f02002a, 0x7f020032, 0x7f020033, 0x7f020034, 0x7f020035, 0x7f020036, 0x7f020037, 0x7f02003a, 0x7f02003b, 0x7f02003e, 0x7f02003f, 0x7f020045, 0x7f020046, 0x7f020047, 0x7f020048, 0x7f020049, 0x7f02004a, 0x7f02004b, 0x7f02004c, 0x7f02004d, 0x7f020055, 0x7f020058, 0x7f020059, 0x7f02005c, 0x7f02005e, 0x7f020061, 0x7f020062, 0x7f020063, 0x7f020064, 0x7f020065, 0x7f02006c, 0x7f020070, 0x7f020076, 0x7f020077, 0x7f02007a, 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f02007e, 0x7f02007f, 0x7f020080, 0x7f020090, 0x7f020091, 0x7f020092, 0x7f020093, 0x7f020095, 0x7f02009c, 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a2, 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200ac, 0x7f0200ad, 0x7f0200bb, 0x7f0200be, 0x7f0200bf, 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200da, 0x7f0200db, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, 0x7f0200e3, 0x7f0200e4, 0x7f0200e5, 0x7f0200e6, 0x7f0200e7, 0x7f0200e8, 0x7f0200e9 }; + public static final int AppCompatTheme_android_windowIsFloating = 0; + public static final int AppCompatTheme_android_windowAnimationStyle = 1; + public static final int AppCompatTheme_actionBarDivider = 2; + public static final int AppCompatTheme_actionBarItemBackground = 3; + public static final int AppCompatTheme_actionBarPopupTheme = 4; + public static final int AppCompatTheme_actionBarSize = 5; + public static final int AppCompatTheme_actionBarSplitStyle = 6; + public static final int AppCompatTheme_actionBarStyle = 7; + public static final int AppCompatTheme_actionBarTabBarStyle = 8; + public static final int AppCompatTheme_actionBarTabStyle = 9; + public static final int AppCompatTheme_actionBarTabTextStyle = 10; + public static final int AppCompatTheme_actionBarTheme = 11; + public static final int AppCompatTheme_actionBarWidgetTheme = 12; + public static final int AppCompatTheme_actionButtonStyle = 13; + public static final int AppCompatTheme_actionDropDownStyle = 14; + public static final int AppCompatTheme_actionMenuTextAppearance = 15; + public static final int AppCompatTheme_actionMenuTextColor = 16; + public static final int AppCompatTheme_actionModeBackground = 17; + public static final int AppCompatTheme_actionModeCloseButtonStyle = 18; + public static final int AppCompatTheme_actionModeCloseDrawable = 19; + public static final int AppCompatTheme_actionModeCopyDrawable = 20; + public static final int AppCompatTheme_actionModeCutDrawable = 21; + public static final int AppCompatTheme_actionModeFindDrawable = 22; + public static final int AppCompatTheme_actionModePasteDrawable = 23; + public static final int AppCompatTheme_actionModePopupWindowStyle = 24; + public static final int AppCompatTheme_actionModeSelectAllDrawable = 25; + public static final int AppCompatTheme_actionModeShareDrawable = 26; + public static final int AppCompatTheme_actionModeSplitBackground = 27; + public static final int AppCompatTheme_actionModeStyle = 28; + public static final int AppCompatTheme_actionModeWebSearchDrawable = 29; + public static final int AppCompatTheme_actionOverflowButtonStyle = 30; + public static final int AppCompatTheme_actionOverflowMenuStyle = 31; + public static final int AppCompatTheme_activityChooserViewStyle = 32; + public static final int AppCompatTheme_alertDialogButtonGroupStyle = 33; + public static final int AppCompatTheme_alertDialogCenterButtons = 34; + public static final int AppCompatTheme_alertDialogStyle = 35; + public static final int AppCompatTheme_alertDialogTheme = 36; + public static final int AppCompatTheme_autoCompleteTextViewStyle = 37; + public static final int AppCompatTheme_borderlessButtonStyle = 38; + public static final int AppCompatTheme_buttonBarButtonStyle = 39; + public static final int AppCompatTheme_buttonBarNegativeButtonStyle = 40; + public static final int AppCompatTheme_buttonBarNeutralButtonStyle = 41; + public static final int AppCompatTheme_buttonBarPositiveButtonStyle = 42; + public static final int AppCompatTheme_buttonBarStyle = 43; + public static final int AppCompatTheme_buttonStyle = 44; + public static final int AppCompatTheme_buttonStyleSmall = 45; + public static final int AppCompatTheme_checkboxStyle = 46; + public static final int AppCompatTheme_checkedTextViewStyle = 47; + public static final int AppCompatTheme_colorAccent = 48; + public static final int AppCompatTheme_colorBackgroundFloating = 49; + public static final int AppCompatTheme_colorButtonNormal = 50; + public static final int AppCompatTheme_colorControlActivated = 51; + public static final int AppCompatTheme_colorControlHighlight = 52; + public static final int AppCompatTheme_colorControlNormal = 53; + public static final int AppCompatTheme_colorPrimary = 54; + public static final int AppCompatTheme_colorPrimaryDark = 55; + public static final int AppCompatTheme_colorSwitchThumbNormal = 56; + public static final int AppCompatTheme_controlBackground = 57; + public static final int AppCompatTheme_dialogPreferredPadding = 58; + public static final int AppCompatTheme_dialogTheme = 59; + public static final int AppCompatTheme_dividerHorizontal = 60; + public static final int AppCompatTheme_dividerVertical = 61; + public static final int AppCompatTheme_dropDownListViewStyle = 62; + public static final int AppCompatTheme_dropdownListPreferredItemHeight = 63; + public static final int AppCompatTheme_editTextBackground = 64; + public static final int AppCompatTheme_editTextColor = 65; + public static final int AppCompatTheme_editTextStyle = 66; + public static final int AppCompatTheme_homeAsUpIndicator = 67; + public static final int AppCompatTheme_imageButtonStyle = 68; + public static final int AppCompatTheme_listChoiceBackgroundIndicator = 69; + public static final int AppCompatTheme_listDividerAlertDialog = 70; + public static final int AppCompatTheme_listMenuViewStyle = 71; + public static final int AppCompatTheme_listPopupWindowStyle = 72; + public static final int AppCompatTheme_listPreferredItemHeight = 73; + public static final int AppCompatTheme_listPreferredItemHeightLarge = 74; + public static final int AppCompatTheme_listPreferredItemHeightSmall = 75; + public static final int AppCompatTheme_listPreferredItemPaddingLeft = 76; + public static final int AppCompatTheme_listPreferredItemPaddingRight = 77; + public static final int AppCompatTheme_panelBackground = 78; + public static final int AppCompatTheme_panelMenuListTheme = 79; + public static final int AppCompatTheme_panelMenuListWidth = 80; + public static final int AppCompatTheme_popupMenuStyle = 81; + public static final int AppCompatTheme_popupWindowStyle = 82; + public static final int AppCompatTheme_radioButtonStyle = 83; + public static final int AppCompatTheme_ratingBarStyle = 84; + public static final int AppCompatTheme_ratingBarStyleIndicator = 85; + public static final int AppCompatTheme_ratingBarStyleSmall = 86; + public static final int AppCompatTheme_searchViewStyle = 87; + public static final int AppCompatTheme_seekBarStyle = 88; + public static final int AppCompatTheme_selectableItemBackground = 89; + public static final int AppCompatTheme_selectableItemBackgroundBorderless = 90; + public static final int AppCompatTheme_spinnerDropDownItemStyle = 91; + public static final int AppCompatTheme_spinnerStyle = 92; + public static final int AppCompatTheme_switchStyle = 93; + public static final int AppCompatTheme_textAppearanceLargePopupMenu = 94; + public static final int AppCompatTheme_textAppearanceListItem = 95; + public static final int AppCompatTheme_textAppearanceListItemSmall = 96; + public static final int AppCompatTheme_textAppearancePopupMenuHeader = 97; + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle = 98; + public static final int AppCompatTheme_textAppearanceSearchResultTitle = 99; + public static final int AppCompatTheme_textAppearanceSmallPopupMenu = 100; + public static final int AppCompatTheme_textColorAlertDialogListItem = 101; + public static final int AppCompatTheme_textColorSearchUrl = 102; + public static final int AppCompatTheme_toolbarNavigationButtonStyle = 103; + public static final int AppCompatTheme_toolbarStyle = 104; + public static final int AppCompatTheme_windowActionBar = 105; + public static final int AppCompatTheme_windowActionBarOverlay = 106; + public static final int AppCompatTheme_windowActionModeOverlay = 107; + public static final int AppCompatTheme_windowFixedHeightMajor = 108; + public static final int AppCompatTheme_windowFixedHeightMinor = 109; + public static final int AppCompatTheme_windowFixedWidthMajor = 110; + public static final int AppCompatTheme_windowFixedWidthMinor = 111; + public static final int AppCompatTheme_windowMinWidthMajor = 112; + public static final int AppCompatTheme_windowMinWidthMinor = 113; + public static final int AppCompatTheme_windowNoTitle = 114; + public static final int[] ButtonBarLayout = { 0x7f020026 }; + public static final int ButtonBarLayout_allowStacking = 0; + public static final int[] Captcha = { 0x7f020031, 0x7f020084, 0x7f020086, 0x7f020099, 0x7f0200af, 0x7f0200c9 }; + public static final int Captcha_blockSize = 0; + public static final int Captcha_max_fail_count = 1; + public static final int Captcha_mode = 2; + public static final int Captcha_progressDrawable = 3; + public static final int Captcha_src = 4; + public static final int Captcha_thumbDrawable = 5; + public static final int[] ColorStateListItem = { 0x10101a5, 0x101031f, 0x7f020027 }; + public static final int ColorStateListItem_android_color = 0; + public static final int ColorStateListItem_android_alpha = 1; + public static final int ColorStateListItem_alpha = 2; + public static final int[] CompoundButton = { 0x1010107, 0x7f02003c, 0x7f02003d }; + public static final int CompoundButton_android_button = 0; + public static final int CompoundButton_buttonTint = 1; + public static final int CompoundButton_buttonTintMode = 2; + public static final int[] DrawerArrowToggle = { 0x7f020028, 0x7f020029, 0x7f020030, 0x7f020044, 0x7f02005f, 0x7f020068, 0x7f0200ab, 0x7f0200c8 }; + public static final int DrawerArrowToggle_arrowHeadLength = 0; + public static final int DrawerArrowToggle_arrowShaftLength = 1; + public static final int DrawerArrowToggle_barLength = 2; + public static final int DrawerArrowToggle_color = 3; + public static final int DrawerArrowToggle_drawableSize = 4; + public static final int DrawerArrowToggle_gapBetweenBars = 5; + public static final int DrawerArrowToggle_spinBars = 6; + public static final int DrawerArrowToggle_thickness = 7; + public static final int[] LinearLayoutCompat = { 0x10100af, 0x10100c4, 0x1010126, 0x1010127, 0x1010128, 0x7f02005b, 0x7f02005d, 0x7f020085, 0x7f0200a7 }; + public static final int LinearLayoutCompat_android_gravity = 0; + public static final int LinearLayoutCompat_android_orientation = 1; + public static final int LinearLayoutCompat_android_baselineAligned = 2; + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex = 3; + public static final int LinearLayoutCompat_android_weightSum = 4; + public static final int LinearLayoutCompat_divider = 5; + public static final int LinearLayoutCompat_dividerPadding = 6; + public static final int LinearLayoutCompat_measureWithLargestChild = 7; + public static final int LinearLayoutCompat_showDividers = 8; + public static final int[] LinearLayoutCompat_Layout = { 0x10100b3, 0x10100f4, 0x10100f5, 0x1010181 }; + public static final int LinearLayoutCompat_Layout_android_layout_gravity = 0; + public static final int LinearLayoutCompat_Layout_android_layout_width = 1; + public static final int LinearLayoutCompat_Layout_android_layout_height = 2; + public static final int LinearLayoutCompat_Layout_android_layout_weight = 3; + public static final int[] ListPopupWindow = { 0x10102ac, 0x10102ad }; + public static final int ListPopupWindow_android_dropDownHorizontalOffset = 0; + public static final int ListPopupWindow_android_dropDownVerticalOffset = 1; + public static final int[] MenuGroup = { 0x101000e, 0x10100d0, 0x1010194, 0x10101de, 0x10101df, 0x10101e0 }; + public static final int MenuGroup_android_enabled = 0; + public static final int MenuGroup_android_id = 1; + public static final int MenuGroup_android_visible = 2; + public static final int MenuGroup_android_menuCategory = 3; + public static final int MenuGroup_android_orderInCategory = 4; + public static final int MenuGroup_android_checkableBehavior = 5; + public static final int[] MenuItem = { 0x1010002, 0x101000e, 0x10100d0, 0x1010106, 0x1010194, 0x10101de, 0x10101df, 0x10101e1, 0x10101e2, 0x10101e3, 0x10101e4, 0x10101e5, 0x101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, 0x7f0200a6 }; + public static final int MenuItem_android_icon = 0; + public static final int MenuItem_android_enabled = 1; + public static final int MenuItem_android_id = 2; + public static final int MenuItem_android_checked = 3; + public static final int MenuItem_android_visible = 4; + public static final int MenuItem_android_menuCategory = 5; + public static final int MenuItem_android_orderInCategory = 6; + public static final int MenuItem_android_title = 7; + public static final int MenuItem_android_titleCondensed = 8; + public static final int MenuItem_android_alphabeticShortcut = 9; + public static final int MenuItem_android_numericShortcut = 10; + public static final int MenuItem_android_checkable = 11; + public static final int MenuItem_android_onClick = 12; + public static final int MenuItem_actionLayout = 13; + public static final int MenuItem_actionProviderClass = 14; + public static final int MenuItem_actionViewClass = 15; + public static final int MenuItem_showAsAction = 16; + public static final int[] MenuView = { 0x10100ae, 0x101012c, 0x101012d, 0x101012e, 0x101012f, 0x1010130, 0x1010131, 0x7f020096, 0x7f0200b2 }; + public static final int MenuView_android_windowAnimationStyle = 0; + public static final int MenuView_android_itemTextAppearance = 1; + public static final int MenuView_android_horizontalDivider = 2; + public static final int MenuView_android_verticalDivider = 3; + public static final int MenuView_android_headerBackground = 4; + public static final int MenuView_android_itemBackground = 5; + public static final int MenuView_android_itemIconDisabledAlpha = 6; + public static final int MenuView_preserveIconSpacing = 7; + public static final int MenuView_subMenuArrow = 8; + public static final int[] PopupWindow = { 0x1010176, 0x10102c9, 0x7f02008b }; + public static final int PopupWindow_android_popupBackground = 0; + public static final int PopupWindow_android_popupAnimationStyle = 1; + public static final int PopupWindow_overlapAnchor = 2; + public static final int[] PopupWindowBackgroundState = { 0x7f0200b1 }; + public static final int PopupWindowBackgroundState_state_above_anchor = 0; + public static final int[] RecycleListView = { 0x7f02008c, 0x7f02008f }; + public static final int RecycleListView_paddingBottomNoButtons = 0; + public static final int RecycleListView_paddingTopNoTitle = 1; + public static final int[] SearchView = { 0x10100da, 0x101011f, 0x1010220, 0x1010264, 0x7f020040, 0x7f02004e, 0x7f020057, 0x7f020069, 0x7f02006f, 0x7f020075, 0x7f02009a, 0x7f02009b, 0x7f0200a0, 0x7f0200a1, 0x7f0200b3, 0x7f0200b8, 0x7f0200df }; + public static final int SearchView_android_focusable = 0; + public static final int SearchView_android_maxWidth = 1; + public static final int SearchView_android_inputType = 2; + public static final int SearchView_android_imeOptions = 3; + public static final int SearchView_closeIcon = 4; + public static final int SearchView_commitIcon = 5; + public static final int SearchView_defaultQueryHint = 6; + public static final int SearchView_goIcon = 7; + public static final int SearchView_iconifiedByDefault = 8; + public static final int SearchView_layout = 9; + public static final int SearchView_queryBackground = 10; + public static final int SearchView_queryHint = 11; + public static final int SearchView_searchHintIcon = 12; + public static final int SearchView_searchIcon = 13; + public static final int SearchView_submitBackground = 14; + public static final int SearchView_suggestionRowLayout = 15; + public static final int SearchView_voiceIcon = 16; + public static final int[] Spinner = { 0x10100b2, 0x1010176, 0x101017b, 0x1010262, 0x7f020094 }; + public static final int Spinner_android_entries = 0; + public static final int Spinner_android_popupBackground = 1; + public static final int Spinner_android_prompt = 2; + public static final int Spinner_android_dropDownWidth = 3; + public static final int Spinner_popupTheme = 4; + public static final int[] SwitchCompat = { 0x1010124, 0x1010125, 0x1010142, 0x7f0200a8, 0x7f0200ae, 0x7f0200b9, 0x7f0200ba, 0x7f0200bc, 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200dc, 0x7f0200dd, 0x7f0200de }; + public static final int SwitchCompat_android_textOn = 0; + public static final int SwitchCompat_android_textOff = 1; + public static final int SwitchCompat_android_thumb = 2; + public static final int SwitchCompat_showText = 3; + public static final int SwitchCompat_splitTrack = 4; + public static final int SwitchCompat_switchMinWidth = 5; + public static final int SwitchCompat_switchPadding = 6; + public static final int SwitchCompat_switchTextAppearance = 7; + public static final int SwitchCompat_thumbTextPadding = 8; + public static final int SwitchCompat_thumbTint = 9; + public static final int SwitchCompat_thumbTintMode = 10; + public static final int SwitchCompat_track = 11; + public static final int SwitchCompat_trackTint = 12; + public static final int SwitchCompat_trackTintMode = 13; + public static final int[] TextAppearance = { 0x1010095, 0x1010096, 0x1010097, 0x1010098, 0x101009a, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x7f0200bd }; + public static final int TextAppearance_android_textSize = 0; + public static final int TextAppearance_android_typeface = 1; + public static final int TextAppearance_android_textStyle = 2; + public static final int TextAppearance_android_textColor = 3; + public static final int TextAppearance_android_textColorHint = 4; + public static final int TextAppearance_android_shadowColor = 5; + public static final int TextAppearance_android_shadowDx = 6; + public static final int TextAppearance_android_shadowDy = 7; + public static final int TextAppearance_android_shadowRadius = 8; + public static final int TextAppearance_textAllCaps = 9; + public static final int[] Toolbar = { 0x10100af, 0x1010140, 0x7f020038, 0x7f020042, 0x7f020043, 0x7f02004f, 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020081, 0x7f020082, 0x7f020083, 0x7f020088, 0x7f020089, 0x7f020094, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, 0x7f0200d8 }; + public static final int Toolbar_android_gravity = 0; + public static final int Toolbar_android_minHeight = 1; + public static final int Toolbar_buttonGravity = 2; + public static final int Toolbar_collapseContentDescription = 3; + public static final int Toolbar_collapseIcon = 4; + public static final int Toolbar_contentInsetEnd = 5; + public static final int Toolbar_contentInsetEndWithActions = 6; + public static final int Toolbar_contentInsetLeft = 7; + public static final int Toolbar_contentInsetRight = 8; + public static final int Toolbar_contentInsetStart = 9; + public static final int Toolbar_contentInsetStartWithNavigation = 10; + public static final int Toolbar_logo = 11; + public static final int Toolbar_logoDescription = 12; + public static final int Toolbar_maxButtonHeight = 13; + public static final int Toolbar_navigationContentDescription = 14; + public static final int Toolbar_navigationIcon = 15; + public static final int Toolbar_popupTheme = 16; + public static final int Toolbar_subtitle = 17; + public static final int Toolbar_subtitleTextAppearance = 18; + public static final int Toolbar_subtitleTextColor = 19; + public static final int Toolbar_title = 20; + public static final int Toolbar_titleMargin = 21; + public static final int Toolbar_titleMarginBottom = 22; + public static final int Toolbar_titleMarginEnd = 23; + public static final int Toolbar_titleMarginStart = 24; + public static final int Toolbar_titleMarginTop = 25; + public static final int Toolbar_titleMargins = 26; + public static final int Toolbar_titleTextAppearance = 27; + public static final int Toolbar_titleTextColor = 28; + public static final int[] View = { 0x1010000, 0x10100da, 0x7f02008d, 0x7f02008e, 0x7f0200c7 }; + public static final int View_android_theme = 0; + public static final int View_android_focusable = 1; + public static final int View_paddingEnd = 2; + public static final int View_paddingStart = 3; + public static final int View_theme = 4; + public static final int[] ViewBackgroundHelper = { 0x10100d4, 0x7f02002e, 0x7f02002f }; + public static final int ViewBackgroundHelper_android_background = 0; + public static final int ViewBackgroundHelper_backgroundTint = 1; + public static final int ViewBackgroundHelper_backgroundTintMode = 2; + public static final int[] ViewStubCompat = { 0x10100d0, 0x10100f2, 0x10100f3 }; + public static final int ViewStubCompat_android_id = 0; + public static final int ViewStubCompat_android_layout = 1; + public static final int ViewStubCompat_android_inflatedId = 2; + } +} diff --git a/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/xnote/activity/R.java b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/xnote/activity/R.java new file mode 100644 index 0000000..d9ed817 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/com/xnote/activity/R.java @@ -0,0 +1,8295 @@ +/* AUTO-GENERATED FILE. DO NOT MODIFY. + * + * This class was automatically generated by the + * aapt tool from the resource data it found. It + * should not be modified by hand. + */ + +package com.xnote.activity; + +public final class R { + public static final class anim { + public static final int abc_fade_in=0x7f010000; + public static final int abc_fade_out=0x7f010001; + public static final int abc_grow_fade_in_from_bottom=0x7f010002; + public static final int abc_popup_enter=0x7f010003; + public static final int abc_popup_exit=0x7f010004; + public static final int abc_shrink_fade_out_from_bottom=0x7f010005; + public static final int abc_slide_in_bottom=0x7f010006; + public static final int abc_slide_in_top=0x7f010007; + public static final int abc_slide_out_bottom=0x7f010008; + public static final int abc_slide_out_top=0x7f010009; + } + public static final class attr { + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarDivider=0x7f020000; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarItemBackground=0x7f020001; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarPopupTheme=0x7f020002; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ */ + public static final int actionBarSize=0x7f020003; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarSplitStyle=0x7f020004; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarStyle=0x7f020005; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabBarStyle=0x7f020006; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabStyle=0x7f020007; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTabTextStyle=0x7f020008; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarTheme=0x7f020009; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionBarWidgetTheme=0x7f02000a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionButtonStyle=0x7f02000b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionDropDownStyle=0x7f02000c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionLayout=0x7f02000d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionMenuTextAppearance=0x7f02000e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int actionMenuTextColor=0x7f02000f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeBackground=0x7f020010; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseButtonStyle=0x7f020011; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCloseDrawable=0x7f020012; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCopyDrawable=0x7f020013; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeCutDrawable=0x7f020014; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeFindDrawable=0x7f020015; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePasteDrawable=0x7f020016; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModePopupWindowStyle=0x7f020017; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSelectAllDrawable=0x7f020018; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeShareDrawable=0x7f020019; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeSplitBackground=0x7f02001a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeStyle=0x7f02001b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionModeWebSearchDrawable=0x7f02001c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowButtonStyle=0x7f02001d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int actionOverflowMenuStyle=0x7f02001e; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionProviderClass=0x7f02001f; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int actionViewClass=0x7f020020; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int activityChooserViewStyle=0x7f020021; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogButtonGroupStyle=0x7f020022; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int alertDialogCenterButtons=0x7f020023; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogStyle=0x7f020024; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int alertDialogTheme=0x7f020025; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int allowStacking=0x7f020026; + /** + *

May be a floating point value, such as "1.2". + */ + public static final int alpha=0x7f020027; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowHeadLength=0x7f020028; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int arrowShaftLength=0x7f020029; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int autoCompleteTextViewStyle=0x7f02002a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int background=0x7f02002b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundSplit=0x7f02002c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundStacked=0x7f02002d; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int backgroundTint=0x7f02002e; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int backgroundTintMode=0x7f02002f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int barLength=0x7f020030; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int blockSize=0x7f020031; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int borderlessButtonStyle=0x7f020032; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarButtonStyle=0x7f020033; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNegativeButtonStyle=0x7f020034; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarNeutralButtonStyle=0x7f020035; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarPositiveButtonStyle=0x7f020036; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonBarStyle=0x7f020037; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
top30
+ */ + public static final int buttonGravity=0x7f020038; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonPanelSideLayout=0x7f020039; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyle=0x7f02003a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int buttonStyleSmall=0x7f02003b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int buttonTint=0x7f02003c; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int buttonTintMode=0x7f02003d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkboxStyle=0x7f02003e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int checkedTextViewStyle=0x7f02003f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeIcon=0x7f020040; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int closeItemLayout=0x7f020041; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int collapseContentDescription=0x7f020042; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int collapseIcon=0x7f020043; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int color=0x7f020044; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorAccent=0x7f020045; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorBackgroundFloating=0x7f020046; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorButtonNormal=0x7f020047; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlActivated=0x7f020048; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlHighlight=0x7f020049; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorControlNormal=0x7f02004a; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimary=0x7f02004b; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorPrimaryDark=0x7f02004c; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int colorSwitchThumbNormal=0x7f02004d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int commitIcon=0x7f02004e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEnd=0x7f02004f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetEndWithActions=0x7f020050; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetLeft=0x7f020051; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetRight=0x7f020052; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStart=0x7f020053; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int contentInsetStartWithNavigation=0x7f020054; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int controlBackground=0x7f020055; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int customNavigationLayout=0x7f020056; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int defaultQueryHint=0x7f020057; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dialogPreferredPadding=0x7f020058; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dialogTheme=0x7f020059; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ */ + public static final int displayOptions=0x7f02005a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int divider=0x7f02005b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerHorizontal=0x7f02005c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dividerPadding=0x7f02005d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dividerVertical=0x7f02005e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int drawableSize=0x7f02005f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int drawerArrowStyle=0x7f020060; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int dropDownListViewStyle=0x7f020061; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int dropdownListPreferredItemHeight=0x7f020062; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextBackground=0x7f020063; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int editTextColor=0x7f020064; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int editTextStyle=0x7f020065; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int elevation=0x7f020066; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int expandActivityOverflowButtonDrawable=0x7f020067; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int gapBetweenBars=0x7f020068; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int goIcon=0x7f020069; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int height=0x7f02006a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int hideOnContentScroll=0x7f02006b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeAsUpIndicator=0x7f02006c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int homeLayout=0x7f02006d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int icon=0x7f02006e; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int iconifiedByDefault=0x7f02006f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int imageButtonStyle=0x7f020070; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int indeterminateProgressStyle=0x7f020071; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int initialActivityCount=0x7f020072; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int isLightTheme=0x7f020073; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int itemPadding=0x7f020074; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int layout=0x7f020075; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listChoiceBackgroundIndicator=0x7f020076; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listDividerAlertDialog=0x7f020077; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listItemLayout=0x7f020078; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listLayout=0x7f020079; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listMenuViewStyle=0x7f02007a; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int listPopupWindowStyle=0x7f02007b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeight=0x7f02007c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightLarge=0x7f02007d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemHeightSmall=0x7f02007e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingLeft=0x7f02007f; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int listPreferredItemPaddingRight=0x7f020080; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int logo=0x7f020081; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int logoDescription=0x7f020082; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int maxButtonHeight=0x7f020083; + /** + *

May be an integer value, such as "100". + */ + public static final int max_fail_count=0x7f020084; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int measureWithLargestChild=0x7f020085; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
mode_bar1
mode_nonbar2
+ */ + public static final int mode=0x7f020086; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int multiChoiceItemLayout=0x7f020087; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int navigationContentDescription=0x7f020088; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int navigationIcon=0x7f020089; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1
normal0
tabMode2
+ */ + public static final int navigationMode=0x7f02008a; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int overlapAnchor=0x7f02008b; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingBottomNoButtons=0x7f02008c; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingEnd=0x7f02008d; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingStart=0x7f02008e; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int paddingTopNoTitle=0x7f02008f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelBackground=0x7f020090; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int panelMenuListTheme=0x7f020091; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int panelMenuListWidth=0x7f020092; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupMenuStyle=0x7f020093; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupTheme=0x7f020094; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int popupWindowStyle=0x7f020095; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int preserveIconSpacing=0x7f020096; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int progressBarPadding=0x7f020097; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressBarStyle=0x7f020098; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int progressDrawable=0x7f020099; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int queryBackground=0x7f02009a; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int queryHint=0x7f02009b; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int radioButtonStyle=0x7f02009c; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyle=0x7f02009d; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleIndicator=0x7f02009e; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int ratingBarStyleSmall=0x7f02009f; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchHintIcon=0x7f0200a0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchIcon=0x7f0200a1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int searchViewStyle=0x7f0200a2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int seekBarStyle=0x7f0200a3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackground=0x7f0200a4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int selectableItemBackgroundBorderless=0x7f0200a5; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2
collapseActionView8
ifRoom1
never0
withText4
+ */ + public static final int showAsAction=0x7f0200a6; + /** + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ */ + public static final int showDividers=0x7f0200a7; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showText=0x7f0200a8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int showTitle=0x7f0200a9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int singleChoiceItemLayout=0x7f0200aa; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int spinBars=0x7f0200ab; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerDropDownItemStyle=0x7f0200ac; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int spinnerStyle=0x7f0200ad; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int splitTrack=0x7f0200ae; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int src=0x7f0200af; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int srcCompat=0x7f0200b0; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int state_above_anchor=0x7f0200b1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subMenuArrow=0x7f0200b2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int submitBackground=0x7f0200b3; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int subtitle=0x7f0200b4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextAppearance=0x7f0200b5; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int subtitleTextColor=0x7f0200b6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int subtitleTextStyle=0x7f0200b7; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int suggestionRowLayout=0x7f0200b8; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchMinWidth=0x7f0200b9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int switchPadding=0x7f0200ba; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchStyle=0x7f0200bb; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int switchTextAppearance=0x7f0200bc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int textAllCaps=0x7f0200bd; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceLargePopupMenu=0x7f0200be; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItem=0x7f0200bf; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceListItemSmall=0x7f0200c0; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearancePopupMenuHeader=0x7f0200c1; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultSubtitle=0x7f0200c2; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSearchResultTitle=0x7f0200c3; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int textAppearanceSmallPopupMenu=0x7f0200c4; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorAlertDialogListItem=0x7f0200c5; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int textColorSearchUrl=0x7f0200c6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int theme=0x7f0200c7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thickness=0x7f0200c8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int thumbDrawable=0x7f0200c9; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int thumbTextPadding=0x7f0200ca; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int thumbTint=0x7f0200cb; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int thumbTintMode=0x7f0200cc; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int tickMark=0x7f0200cd; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int tickMarkTint=0x7f0200ce; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int tickMarkTintMode=0x7f0200cf; + /** + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + */ + public static final int title=0x7f0200d0; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargin=0x7f0200d1; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginBottom=0x7f0200d2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginEnd=0x7f0200d3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginStart=0x7f0200d4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMarginTop=0x7f0200d5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + */ + public static final int titleMargins=0x7f0200d6; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextAppearance=0x7f0200d7; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int titleTextColor=0x7f0200d8; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int titleTextStyle=0x7f0200d9; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarNavigationButtonStyle=0x7f0200da; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int toolbarStyle=0x7f0200db; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int track=0x7f0200dc; + /** + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + */ + public static final int trackTint=0x7f0200dd; + /** + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ */ + public static final int trackTintMode=0x7f0200de; + /** + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + */ + public static final int voiceIcon=0x7f0200df; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBar=0x7f0200e0; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionBarOverlay=0x7f0200e1; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowActionModeOverlay=0x7f0200e2; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMajor=0x7f0200e3; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedHeightMinor=0x7f0200e4; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMajor=0x7f0200e5; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowFixedWidthMinor=0x7f0200e6; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMajor=0x7f0200e7; + /** + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + */ + public static final int windowMinWidthMinor=0x7f0200e8; + /** + *

May be a boolean value, such as "true" or + * "false". + */ + public static final int windowNoTitle=0x7f0200e9; + } + public static final class bool { + public static final int abc_action_bar_embed_tabs=0x7f030000; + public static final int abc_allow_stacked_button_bar=0x7f030001; + public static final int abc_config_actionMenuItemAllCaps=0x7f030002; + public static final int abc_config_closeDialogWhenTouchOutside=0x7f030003; + public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f030004; + } + public static final class color { + public static final int abc_background_cache_hint_selector_material_dark=0x7f040000; + public static final int abc_background_cache_hint_selector_material_light=0x7f040001; + public static final int abc_btn_colored_borderless_text_material=0x7f040002; + public static final int abc_btn_colored_text_material=0x7f040003; + public static final int abc_color_highlight_material=0x7f040004; + public static final int abc_hint_foreground_material_dark=0x7f040005; + public static final int abc_hint_foreground_material_light=0x7f040006; + public static final int abc_input_method_navigation_guard=0x7f040007; + public static final int abc_primary_text_disable_only_material_dark=0x7f040008; + public static final int abc_primary_text_disable_only_material_light=0x7f040009; + public static final int abc_primary_text_material_dark=0x7f04000a; + public static final int abc_primary_text_material_light=0x7f04000b; + public static final int abc_search_url_text=0x7f04000c; + public static final int abc_search_url_text_normal=0x7f04000d; + public static final int abc_search_url_text_pressed=0x7f04000e; + public static final int abc_search_url_text_selected=0x7f04000f; + public static final int abc_secondary_text_material_dark=0x7f040010; + public static final int abc_secondary_text_material_light=0x7f040011; + public static final int abc_tint_btn_checkable=0x7f040012; + public static final int abc_tint_default=0x7f040013; + public static final int abc_tint_edittext=0x7f040014; + public static final int abc_tint_seek_thumb=0x7f040015; + public static final int abc_tint_spinner=0x7f040016; + public static final int abc_tint_switch_thumb=0x7f040017; + public static final int abc_tint_switch_track=0x7f040018; + public static final int accent_material_dark=0x7f040019; + public static final int accent_material_light=0x7f04001a; + public static final int background_floating_material_dark=0x7f04001b; + public static final int background_floating_material_light=0x7f04001c; + public static final int background_material_dark=0x7f04001d; + public static final int background_material_light=0x7f04001e; + public static final int black=0x7f04001f; + public static final int bright_foreground_disabled_material_dark=0x7f040020; + public static final int bright_foreground_disabled_material_light=0x7f040021; + public static final int bright_foreground_inverse_material_dark=0x7f040022; + public static final int bright_foreground_inverse_material_light=0x7f040023; + public static final int bright_foreground_material_dark=0x7f040024; + public static final int bright_foreground_material_light=0x7f040025; + public static final int button_material_dark=0x7f040026; + public static final int button_material_light=0x7f040027; + public static final int colorAccent=0x7f040028; + public static final int colorPrimary=0x7f040029; + public static final int colorPrimaryDark=0x7f04002a; + public static final int dim_foreground_disabled_material_dark=0x7f04002b; + public static final int dim_foreground_disabled_material_light=0x7f04002c; + public static final int dim_foreground_material_dark=0x7f04002d; + public static final int dim_foreground_material_light=0x7f04002e; + public static final int foreground_material_dark=0x7f04002f; + public static final int foreground_material_light=0x7f040030; + public static final int highlighted_text_material_dark=0x7f040031; + public static final int highlighted_text_material_light=0x7f040032; + public static final int material_blue_grey_800=0x7f040033; + public static final int material_blue_grey_900=0x7f040034; + public static final int material_blue_grey_950=0x7f040035; + public static final int material_deep_teal_200=0x7f040036; + public static final int material_deep_teal_500=0x7f040037; + public static final int material_grey_100=0x7f040038; + public static final int material_grey_300=0x7f040039; + public static final int material_grey_50=0x7f04003a; + public static final int material_grey_600=0x7f04003b; + public static final int material_grey_800=0x7f04003c; + public static final int material_grey_850=0x7f04003d; + public static final int material_grey_900=0x7f04003e; + public static final int notification_action_color_filter=0x7f04003f; + public static final int notification_icon_bg_color=0x7f040040; + public static final int notification_material_background_media_default_color=0x7f040041; + public static final int primary_dark_material_dark=0x7f040042; + public static final int primary_dark_material_light=0x7f040043; + public static final int primary_material_dark=0x7f040044; + public static final int primary_material_light=0x7f040045; + public static final int primary_text_default_material_dark=0x7f040046; + public static final int primary_text_default_material_light=0x7f040047; + public static final int primary_text_disabled_material_dark=0x7f040048; + public static final int primary_text_disabled_material_light=0x7f040049; + public static final int ripple_material_dark=0x7f04004a; + public static final int ripple_material_light=0x7f04004b; + public static final int secondary_text_default_material_dark=0x7f04004c; + public static final int secondary_text_default_material_light=0x7f04004d; + public static final int secondary_text_disabled_material_dark=0x7f04004e; + public static final int secondary_text_disabled_material_light=0x7f04004f; + public static final int switch_thumb_disabled_material_dark=0x7f040050; + public static final int switch_thumb_disabled_material_light=0x7f040051; + public static final int switch_thumb_material_dark=0x7f040052; + public static final int switch_thumb_material_light=0x7f040053; + public static final int switch_thumb_normal_material_dark=0x7f040054; + public static final int switch_thumb_normal_material_light=0x7f040055; + public static final int transparent=0x7f040056; + } + public static final class dimen { + public static final int abc_action_bar_content_inset_material=0x7f050000; + public static final int abc_action_bar_content_inset_with_nav=0x7f050001; + public static final int abc_action_bar_default_height_material=0x7f050002; + public static final int abc_action_bar_default_padding_end_material=0x7f050003; + public static final int abc_action_bar_default_padding_start_material=0x7f050004; + public static final int abc_action_bar_elevation_material=0x7f050005; + public static final int abc_action_bar_icon_vertical_padding_material=0x7f050006; + public static final int abc_action_bar_overflow_padding_end_material=0x7f050007; + public static final int abc_action_bar_overflow_padding_start_material=0x7f050008; + public static final int abc_action_bar_progress_bar_size=0x7f050009; + public static final int abc_action_bar_stacked_max_height=0x7f05000a; + public static final int abc_action_bar_stacked_tab_max_width=0x7f05000b; + public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f05000c; + public static final int abc_action_bar_subtitle_top_margin_material=0x7f05000d; + public static final int abc_action_button_min_height_material=0x7f05000e; + public static final int abc_action_button_min_width_material=0x7f05000f; + public static final int abc_action_button_min_width_overflow_material=0x7f050010; + public static final int abc_alert_dialog_button_bar_height=0x7f050011; + public static final int abc_button_inset_horizontal_material=0x7f050012; + public static final int abc_button_inset_vertical_material=0x7f050013; + public static final int abc_button_padding_horizontal_material=0x7f050014; + public static final int abc_button_padding_vertical_material=0x7f050015; + public static final int abc_cascading_menus_min_smallest_width=0x7f050016; + public static final int abc_config_prefDialogWidth=0x7f050017; + public static final int abc_control_corner_material=0x7f050018; + public static final int abc_control_inset_material=0x7f050019; + public static final int abc_control_padding_material=0x7f05001a; + public static final int abc_dialog_fixed_height_major=0x7f05001b; + public static final int abc_dialog_fixed_height_minor=0x7f05001c; + public static final int abc_dialog_fixed_width_major=0x7f05001d; + public static final int abc_dialog_fixed_width_minor=0x7f05001e; + public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f05001f; + public static final int abc_dialog_list_padding_top_no_title=0x7f050020; + public static final int abc_dialog_min_width_major=0x7f050021; + public static final int abc_dialog_min_width_minor=0x7f050022; + public static final int abc_dialog_padding_material=0x7f050023; + public static final int abc_dialog_padding_top_material=0x7f050024; + public static final int abc_dialog_title_divider_material=0x7f050025; + public static final int abc_disabled_alpha_material_dark=0x7f050026; + public static final int abc_disabled_alpha_material_light=0x7f050027; + public static final int abc_dropdownitem_icon_width=0x7f050028; + public static final int abc_dropdownitem_text_padding_left=0x7f050029; + public static final int abc_dropdownitem_text_padding_right=0x7f05002a; + public static final int abc_edit_text_inset_bottom_material=0x7f05002b; + public static final int abc_edit_text_inset_horizontal_material=0x7f05002c; + public static final int abc_edit_text_inset_top_material=0x7f05002d; + public static final int abc_floating_window_z=0x7f05002e; + public static final int abc_list_item_padding_horizontal_material=0x7f05002f; + public static final int abc_panel_menu_list_width=0x7f050030; + public static final int abc_progress_bar_height_material=0x7f050031; + public static final int abc_search_view_preferred_height=0x7f050032; + public static final int abc_search_view_preferred_width=0x7f050033; + public static final int abc_seekbar_track_background_height_material=0x7f050034; + public static final int abc_seekbar_track_progress_height_material=0x7f050035; + public static final int abc_select_dialog_padding_start_material=0x7f050036; + public static final int abc_switch_padding=0x7f050037; + public static final int abc_text_size_body_1_material=0x7f050038; + public static final int abc_text_size_body_2_material=0x7f050039; + public static final int abc_text_size_button_material=0x7f05003a; + public static final int abc_text_size_caption_material=0x7f05003b; + public static final int abc_text_size_display_1_material=0x7f05003c; + public static final int abc_text_size_display_2_material=0x7f05003d; + public static final int abc_text_size_display_3_material=0x7f05003e; + public static final int abc_text_size_display_4_material=0x7f05003f; + public static final int abc_text_size_headline_material=0x7f050040; + public static final int abc_text_size_large_material=0x7f050041; + public static final int abc_text_size_medium_material=0x7f050042; + public static final int abc_text_size_menu_header_material=0x7f050043; + public static final int abc_text_size_menu_material=0x7f050044; + public static final int abc_text_size_small_material=0x7f050045; + public static final int abc_text_size_subhead_material=0x7f050046; + public static final int abc_text_size_subtitle_material_toolbar=0x7f050047; + public static final int abc_text_size_title_material=0x7f050048; + public static final int abc_text_size_title_material_toolbar=0x7f050049; + public static final int disabled_alpha_material_dark=0x7f05004a; + public static final int disabled_alpha_material_light=0x7f05004b; + public static final int highlight_alpha_material_colored=0x7f05004c; + public static final int highlight_alpha_material_dark=0x7f05004d; + public static final int highlight_alpha_material_light=0x7f05004e; + public static final int hint_alpha_material_dark=0x7f05004f; + public static final int hint_alpha_material_light=0x7f050050; + public static final int hint_pressed_alpha_material_dark=0x7f050051; + public static final int hint_pressed_alpha_material_light=0x7f050052; + public static final int notification_action_icon_size=0x7f050053; + public static final int notification_action_text_size=0x7f050054; + public static final int notification_big_circle_margin=0x7f050055; + public static final int notification_content_margin_start=0x7f050056; + public static final int notification_large_icon_height=0x7f050057; + public static final int notification_large_icon_width=0x7f050058; + public static final int notification_main_column_padding_top=0x7f050059; + public static final int notification_media_narrow_margin=0x7f05005a; + public static final int notification_right_icon_size=0x7f05005b; + public static final int notification_right_side_padding_top=0x7f05005c; + public static final int notification_small_icon_background_padding=0x7f05005d; + public static final int notification_small_icon_size_as_large=0x7f05005e; + public static final int notification_subtext_size=0x7f05005f; + public static final int notification_top_pad=0x7f050060; + public static final int notification_top_pad_large_text=0x7f050061; + public static final int text_font_size_large=0x7f050062; + public static final int text_font_size_medium=0x7f050063; + public static final int text_font_size_normal=0x7f050064; + public static final int text_font_size_small=0x7f050065; + public static final int text_font_size_super=0x7f050066; + public static final int widget_margin=0x7f050067; + } + public static final class drawable { + public static final int abc_ab_share_pack_mtrl_alpha=0x7f060000; + public static final int abc_action_bar_item_background_material=0x7f060001; + public static final int abc_btn_borderless_material=0x7f060002; + public static final int abc_btn_check_material=0x7f060003; + public static final int abc_btn_check_to_on_mtrl_000=0x7f060004; + public static final int abc_btn_check_to_on_mtrl_015=0x7f060005; + public static final int abc_btn_colored_material=0x7f060006; + public static final int abc_btn_default_mtrl_shape=0x7f060007; + public static final int abc_btn_radio_material=0x7f060008; + public static final int abc_btn_radio_to_on_mtrl_000=0x7f060009; + public static final int abc_btn_radio_to_on_mtrl_015=0x7f06000a; + public static final int abc_btn_switch_to_on_mtrl_00001=0x7f06000b; + public static final int abc_btn_switch_to_on_mtrl_00012=0x7f06000c; + public static final int abc_cab_background_internal_bg=0x7f06000d; + public static final int abc_cab_background_top_material=0x7f06000e; + public static final int abc_cab_background_top_mtrl_alpha=0x7f06000f; + public static final int abc_control_background_material=0x7f060010; + public static final int abc_dialog_material_background=0x7f060011; + public static final int abc_edit_text_material=0x7f060012; + public static final int abc_ic_ab_back_material=0x7f060013; + public static final int abc_ic_arrow_drop_right_black_24dp=0x7f060014; + public static final int abc_ic_clear_material=0x7f060015; + public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f060016; + public static final int abc_ic_go_search_api_material=0x7f060017; + public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f060018; + public static final int abc_ic_menu_cut_mtrl_alpha=0x7f060019; + public static final int abc_ic_menu_overflow_material=0x7f06001a; + public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f06001b; + public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f06001c; + public static final int abc_ic_menu_share_mtrl_alpha=0x7f06001d; + public static final int abc_ic_search_api_material=0x7f06001e; + public static final int abc_ic_star_black_16dp=0x7f06001f; + public static final int abc_ic_star_black_36dp=0x7f060020; + public static final int abc_ic_star_black_48dp=0x7f060021; + public static final int abc_ic_star_half_black_16dp=0x7f060022; + public static final int abc_ic_star_half_black_36dp=0x7f060023; + public static final int abc_ic_star_half_black_48dp=0x7f060024; + public static final int abc_ic_voice_search_api_material=0x7f060025; + public static final int abc_item_background_holo_dark=0x7f060026; + public static final int abc_item_background_holo_light=0x7f060027; + public static final int abc_list_divider_mtrl_alpha=0x7f060028; + public static final int abc_list_focused_holo=0x7f060029; + public static final int abc_list_longpressed_holo=0x7f06002a; + public static final int abc_list_pressed_holo_dark=0x7f06002b; + public static final int abc_list_pressed_holo_light=0x7f06002c; + public static final int abc_list_selector_background_transition_holo_dark=0x7f06002d; + public static final int abc_list_selector_background_transition_holo_light=0x7f06002e; + public static final int abc_list_selector_disabled_holo_dark=0x7f06002f; + public static final int abc_list_selector_disabled_holo_light=0x7f060030; + public static final int abc_list_selector_holo_dark=0x7f060031; + public static final int abc_list_selector_holo_light=0x7f060032; + public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f060033; + public static final int abc_popup_background_mtrl_mult=0x7f060034; + public static final int abc_ratingbar_indicator_material=0x7f060035; + public static final int abc_ratingbar_material=0x7f060036; + public static final int abc_ratingbar_small_material=0x7f060037; + public static final int abc_scrubber_control_off_mtrl_alpha=0x7f060038; + public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f060039; + public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f06003a; + public static final int abc_scrubber_primary_mtrl_alpha=0x7f06003b; + public static final int abc_scrubber_track_mtrl_alpha=0x7f06003c; + public static final int abc_seekbar_thumb_material=0x7f06003d; + public static final int abc_seekbar_tick_mark_material=0x7f06003e; + public static final int abc_seekbar_track_material=0x7f06003f; + public static final int abc_spinner_mtrl_am_alpha=0x7f060040; + public static final int abc_spinner_textfield_background_material=0x7f060041; + public static final int abc_switch_thumb_material=0x7f060042; + public static final int abc_switch_track_mtrl_alpha=0x7f060043; + public static final int abc_tab_indicator_material=0x7f060044; + public static final int abc_tab_indicator_mtrl_alpha=0x7f060045; + public static final int abc_text_cursor_material=0x7f060046; + public static final int abc_text_select_handle_left_mtrl_dark=0x7f060047; + public static final int abc_text_select_handle_left_mtrl_light=0x7f060048; + public static final int abc_text_select_handle_middle_mtrl_dark=0x7f060049; + public static final int abc_text_select_handle_middle_mtrl_light=0x7f06004a; + public static final int abc_text_select_handle_right_mtrl_dark=0x7f06004b; + public static final int abc_text_select_handle_right_mtrl_light=0x7f06004c; + public static final int abc_textfield_activated_mtrl_alpha=0x7f06004d; + public static final int abc_textfield_default_mtrl_alpha=0x7f06004e; + public static final int abc_textfield_search_activated_mtrl_alpha=0x7f06004f; + public static final int abc_textfield_search_default_mtrl_alpha=0x7f060050; + public static final int abc_textfield_search_material=0x7f060051; + public static final int abc_vector_test=0x7f060052; + public static final int add_shortcut_to_home=0x7f060053; + public static final int alarm_time=0x7f060054; + public static final int bg_color=0x7f060055; + public static final int buttons_background=0x7f060056; + public static final int cat=0x7f060057; + public static final int container_backgroud=0x7f060058; + public static final int delete=0x7f060059; + public static final int delete_records_cancel=0x7f06005a; + public static final int delete_records_cancel_2=0x7f06005b; + public static final int delete_records_cancel_xml=0x7f06005c; + public static final int delete_records_ok_xml=0x7f06005d; + public static final int deleterecords_ok=0x7f06005e; + public static final int deleterecords_ok_2=0x7f06005f; + public static final int edit_folder_title=0x7f060060; + public static final int export_to_text=0x7f060061; + public static final int folder_background=0x7f060062; + public static final int icon=0x7f060063; + public static final int imagebutton_background=0x7f060064; + public static final int imagebutton_background_2=0x7f060065; + public static final int item_light_blue=0x7f060066; + public static final int item_light_green=0x7f060067; + public static final int item_light_pink=0x7f060068; + public static final int item_light_white=0x7f060069; + public static final int item_light_yellow=0x7f06006a; + public static final int list_background=0x7f06006b; + public static final int main_background=0x7f06006c; + public static final int move_out_of_folder=0x7f06006d; + public static final int move_to_folder=0x7f06006e; + public static final int new_folder=0x7f06006f; + public static final int new_note=0x7f060070; + public static final int new_note_normal=0x7f060071; + public static final int new_note_pressed=0x7f060072; + public static final int notes_bg_blue=0x7f060073; + public static final int notes_bg_gray=0x7f060074; + public static final int notes_bg_green=0x7f060075; + public static final int notes_bg_pink=0x7f060076; + public static final int notes_header_blue=0x7f060077; + public static final int notes_header_gray=0x7f060078; + public static final int notes_header_green=0x7f060079; + public static final int notes_header_pink=0x7f06007a; + public static final int notes_header_yellow=0x7f06007b; + public static final int notification_action_background=0x7f06007c; + public static final int notification_bg=0x7f06007d; + public static final int notification_bg_low=0x7f06007e; + public static final int notification_bg_low_normal=0x7f06007f; + public static final int notification_bg_low_pressed=0x7f060080; + public static final int notification_bg_normal=0x7f060081; + public static final int notification_bg_normal_pressed=0x7f060082; + public static final int notification_icon_background=0x7f060083; + public static final int notification_template_icon_bg=0x7f060084; + public static final int notification_template_icon_low_bg=0x7f060085; + public static final int notification_tile_bg=0x7f060086; + public static final int notify_panel_notification_icon_bg=0x7f060087; + public static final int po_seekbar=0x7f060088; + public static final int po_seekbar1=0x7f060089; + public static final int refresh=0x7f06008a; + public static final int right=0x7f06008b; + public static final int share=0x7f06008c; + public static final int shortcut_folder=0x7f06008d; + public static final int thumb=0x7f06008e; + public static final int thumb1=0x7f06008f; + public static final int title_background=0x7f060090; + public static final int title_bar_bg=0x7f060091; + public static final int title_bar_imagebutton_add_note=0x7f060092; + public static final int widget_big_blue=0x7f060093; + public static final int widget_big_gray=0x7f060094; + public static final int widget_big_green=0x7f060095; + public static final int widget_big_red=0x7f060096; + public static final int widget_big_yellow=0x7f060097; + public static final int widget_small_blue=0x7f060098; + public static final int widget_small_gray=0x7f060099; + public static final int widget_small_green=0x7f06009a; + public static final int widget_small_red=0x7f06009b; + public static final int widget_small_yellow=0x7f06009c; + public static final int wrong=0x7f06009d; + } + public static final class id { + public static final int accessFailed=0x7f070000; + public static final int accessFailedText=0x7f070001; + public static final int accessRight=0x7f070002; + public static final int accessText=0x7f070003; + public static final int action0=0x7f070004; + public static final int action_bar=0x7f070005; + public static final int action_bar_activity_content=0x7f070006; + public static final int action_bar_container=0x7f070007; + public static final int action_bar_root=0x7f070008; + public static final int action_bar_spinner=0x7f070009; + public static final int action_bar_subtitle=0x7f07000a; + public static final int action_bar_title=0x7f07000b; + public static final int action_container=0x7f07000c; + public static final int action_context_bar=0x7f07000d; + public static final int action_divider=0x7f07000e; + public static final int action_image=0x7f07000f; + public static final int action_menu_divider=0x7f070010; + public static final int action_menu_presenter=0x7f070011; + public static final int action_mode_bar=0x7f070012; + public static final int action_mode_bar_stub=0x7f070013; + public static final int action_mode_close_button=0x7f070014; + public static final int action_text=0x7f070015; + public static final int actions=0x7f070016; + public static final int activity_chooser_view_content=0x7f070017; + public static final int add=0x7f070018; + public static final int alertTitle=0x7f070019; + public static final int always=0x7f07001a; + public static final int beginning=0x7f07001b; + public static final int bottom=0x7f07001c; + public static final int btnAlarmDate=0x7f07001d; + public static final int btnAlarmTime=0x7f07001e; + public static final int btnCancelDel=0x7f07001f; + public static final int btnOK=0x7f070020; + public static final int btn_start_module=0x7f070021; + public static final int buttonPanel=0x7f070022; + public static final int cancel_action=0x7f070023; + public static final int captCha=0x7f070024; + public static final int cb_right=0x7f070025; + public static final int checkbox=0x7f070026; + public static final int chronometer=0x7f070027; + public static final int collapseActionView=0x7f070028; + public static final int contentPanel=0x7f070029; + public static final int custom=0x7f07002a; + public static final int customPanel=0x7f07002b; + public static final int decor_content_parent=0x7f07002c; + public static final int default_activity_button=0x7f07002d; + public static final int dialog_input_psd_root=0x7f07002e; + public static final int dialog_layout_new_folder_root=0x7f07002f; + public static final int dialog_layout_set_password_root=0x7f070030; + public static final int disableHome=0x7f070031; + public static final int edit_query=0x7f070032; + public static final int end=0x7f070033; + public static final int end_padder=0x7f070034; + public static final int et_confirm_Password=0x7f070035; + public static final int et_content=0x7f070036; + public static final int et_dialog_new_folder=0x7f070037; + public static final int et_input_password=0x7f070038; + public static final int et_password=0x7f070039; + public static final int expand_activities_button=0x7f07003a; + public static final int expanded_menu=0x7f07003b; + public static final int gestureOverlayView=0x7f07003c; + public static final int green=0x7f07003d; + public static final int home=0x7f07003e; + public static final int homeAsUp=0x7f07003f; + public static final int ib_move_to_folder=0x7f070040; + public static final int icon=0x7f070041; + public static final int icon_group=0x7f070042; + public static final int ifRoom=0x7f070043; + public static final int image=0x7f070044; + public static final int imageButton=0x7f070045; + public static final int imagebutton_bgcolor=0x7f070046; + public static final int info=0x7f070047; + public static final int line1=0x7f070048; + public static final int line3=0x7f070049; + public static final int list=0x7f07004a; + public static final int listMode=0x7f07004b; + public static final int list_item=0x7f07004c; + public static final int listview=0x7f07004d; + public static final int listview_linearlayout=0x7f07004e; + public static final int media_actions=0x7f07004f; + public static final int middle=0x7f070050; + public static final int mode_bar=0x7f070051; + public static final int mode_nonbar=0x7f070052; + public static final int multiply=0x7f070053; + public static final int never=0x7f070054; + public static final int none=0x7f070055; + public static final int normal=0x7f070056; + public static final int note_detail_header=0x7f070057; + public static final int notification_background=0x7f070058; + public static final int notification_main_column=0x7f070059; + public static final int notification_main_column_container=0x7f07005a; + public static final int parentPanel=0x7f07005b; + public static final int pink=0x7f07005c; + public static final int progress_circular=0x7f07005d; + public static final int progress_horizontal=0x7f07005e; + public static final int radio=0x7f07005f; + public static final int refresh=0x7f070060; + public static final int right_icon=0x7f070061; + public static final int right_side=0x7f070062; + public static final int screen=0x7f070063; + public static final int scrollIndicatorDown=0x7f070064; + public static final int scrollIndicatorUp=0x7f070065; + public static final int scrollView=0x7f070066; + public static final int search_badge=0x7f070067; + public static final int search_bar=0x7f070068; + public static final int search_button=0x7f070069; + public static final int search_close_btn=0x7f07006a; + public static final int search_edit_frame=0x7f07006b; + public static final int search_go_btn=0x7f07006c; + public static final int search_mag_icon=0x7f07006d; + public static final int search_plate=0x7f07006e; + public static final int search_src_text=0x7f07006f; + public static final int search_voice_btn=0x7f070070; + public static final int seekbar=0x7f070071; + public static final int select_dialog_listview=0x7f070072; + public static final int shortcut=0x7f070073; + public static final int showCustom=0x7f070074; + public static final int showHome=0x7f070075; + public static final int showTitle=0x7f070076; + public static final int spacer=0x7f070077; + public static final int split_action_bar=0x7f070078; + public static final int src_atop=0x7f070079; + public static final int src_in=0x7f07007a; + public static final int src_over=0x7f07007b; + public static final int status_bar_latest_event_content=0x7f07007c; + public static final int submenuarrow=0x7f07007d; + public static final int submit_area=0x7f07007e; + public static final int tabMode=0x7f07007f; + public static final int text=0x7f070080; + public static final int text2=0x7f070081; + public static final int textSpacerNoButtons=0x7f070082; + public static final int textSpacerNoTitle=0x7f070083; + public static final int time=0x7f070084; + public static final int title=0x7f070085; + public static final int titleDividerNoCustom=0x7f070086; + public static final int title_template=0x7f070087; + public static final int top=0x7f070088; + public static final int topPanel=0x7f070089; + public static final int tvTitle_move_to_folder=0x7f07008a; + public static final int tv_left=0x7f07008b; + public static final int tv_note_date_time=0x7f07008c; + public static final int tv_password=0x7f07008d; + public static final int tv_right=0x7f07008e; + public static final int tv_widget_date_time=0x7f07008f; + public static final int up=0x7f070090; + public static final int useLogo=0x7f070091; + public static final int vertifyView=0x7f070092; + public static final int white=0x7f070093; + public static final int widget32=0x7f070094; + public static final int widget35=0x7f070095; + public static final int widget3535=0x7f070096; + public static final int widget40=0x7f070097; + public static final int widget46=0x7f070098; + public static final int widget4646=0x7f070099; + public static final int widget_2x2=0x7f07009a; + public static final int widget_2x2_imageView=0x7f07009b; + public static final int widget_2x2_textView=0x7f07009c; + public static final int widget_4x4=0x7f07009d; + public static final int widget_4x4_imageView=0x7f07009e; + public static final int widget_4x4_textView=0x7f07009f; + public static final int widget_detail_header=0x7f0700a0; + public static final int withText=0x7f0700a1; + public static final int wrap_content=0x7f0700a2; + public static final int yellow=0x7f0700a3; + } + public static final class integer { + public static final int abc_config_activityDefaultDur=0x7f080000; + public static final int abc_config_activityShortDur=0x7f080001; + public static final int cancel_button_image_alpha=0x7f080002; + public static final int status_bar_notification_info_maxnum=0x7f080003; + } + public static final class layout { + public static final int abc_action_bar_title_item=0x7f090000; + public static final int abc_action_bar_up_container=0x7f090001; + public static final int abc_action_bar_view_list_nav_layout=0x7f090002; + public static final int abc_action_menu_item_layout=0x7f090003; + public static final int abc_action_menu_layout=0x7f090004; + public static final int abc_action_mode_bar=0x7f090005; + public static final int abc_action_mode_close_item_material=0x7f090006; + public static final int abc_activity_chooser_view=0x7f090007; + public static final int abc_activity_chooser_view_list_item=0x7f090008; + public static final int abc_alert_dialog_button_bar_material=0x7f090009; + public static final int abc_alert_dialog_material=0x7f09000a; + public static final int abc_alert_dialog_title_material=0x7f09000b; + public static final int abc_dialog_title_material=0x7f09000c; + public static final int abc_expanded_menu_layout=0x7f09000d; + public static final int abc_list_menu_item_checkbox=0x7f09000e; + public static final int abc_list_menu_item_icon=0x7f09000f; + public static final int abc_list_menu_item_layout=0x7f090010; + public static final int abc_list_menu_item_radio=0x7f090011; + public static final int abc_popup_menu_header_item_layout=0x7f090012; + public static final int abc_popup_menu_item_layout=0x7f090013; + public static final int abc_screen_content_include=0x7f090014; + public static final int abc_screen_simple=0x7f090015; + public static final int abc_screen_simple_overlay_action_mode=0x7f090016; + public static final int abc_screen_toolbar=0x7f090017; + public static final int abc_search_dropdown_item_icons_2line=0x7f090018; + public static final int abc_search_view=0x7f090019; + public static final int abc_select_dialog_material=0x7f09001a; + public static final int activity_main=0x7f09001b; + public static final int container=0x7f09001c; + public static final int dialog_input_psd=0x7f09001d; + public static final int dialog_layout_new_folder=0x7f09001e; + public static final int dialog_layout_set_password=0x7f09001f; + public static final int dialog_note_bg_color=0x7f090020; + public static final int index_page=0x7f090021; + public static final int listview_del_or_move_item_layout=0x7f090022; + public static final int listview_item_layout=0x7f090023; + public static final int listview_layout_del_or_move_records=0x7f090024; + public static final int note_detail=0x7f090025; + public static final int notification_action=0x7f090026; + public static final int notification_action_tombstone=0x7f090027; + public static final int notification_media_action=0x7f090028; + public static final int notification_media_cancel_action=0x7f090029; + public static final int notification_template_big_media=0x7f09002a; + public static final int notification_template_big_media_custom=0x7f09002b; + public static final int notification_template_big_media_narrow=0x7f09002c; + public static final int notification_template_big_media_narrow_custom=0x7f09002d; + public static final int notification_template_custom_big=0x7f09002e; + public static final int notification_template_icon_group=0x7f09002f; + public static final int notification_template_lines_media=0x7f090030; + public static final int notification_template_media=0x7f090031; + public static final int notification_template_media_custom=0x7f090032; + public static final int notification_template_part_chronometer=0x7f090033; + public static final int notification_template_part_time=0x7f090034; + public static final int select_dialog_item_material=0x7f090035; + public static final int select_dialog_multichoice_material=0x7f090036; + public static final int select_dialog_singlechoice_material=0x7f090037; + public static final int set_alarm=0x7f090038; + public static final int support_simple_spinner_dropdown_item=0x7f090039; + public static final int widget_2x2_layout=0x7f09003a; + public static final int widget_4x4_layout=0x7f09003b; + public static final int widget_note_layout=0x7f09003c; + } + public static final class mipmap { + public static final int cat=0x7f0a0000; + public static final int cat1=0x7f0a0001; + public static final int ic_launcher=0x7f0a0002; + public static final int ic_launcher_round=0x7f0a0003; + } + public static final class raw { + public static final int gestures=0x7f0b0000; + } + public static final class string { + public static final int Cancel=0x7f0c0000; + public static final int Ok=0x7f0c0001; + public static final int abc_action_bar_home_description=0x7f0c0002; + public static final int abc_action_bar_home_description_format=0x7f0c0003; + public static final int abc_action_bar_home_subtitle_description_format=0x7f0c0004; + public static final int abc_action_bar_up_description=0x7f0c0005; + public static final int abc_action_menu_overflow_description=0x7f0c0006; + public static final int abc_action_mode_done=0x7f0c0007; + public static final int abc_activity_chooser_view_see_all=0x7f0c0008; + public static final int abc_activitychooserview_choose_application=0x7f0c0009; + public static final int abc_capital_off=0x7f0c000a; + public static final int abc_capital_on=0x7f0c000b; + public static final int abc_font_family_body_1_material=0x7f0c000c; + public static final int abc_font_family_body_2_material=0x7f0c000d; + public static final int abc_font_family_button_material=0x7f0c000e; + public static final int abc_font_family_caption_material=0x7f0c000f; + public static final int abc_font_family_display_1_material=0x7f0c0010; + public static final int abc_font_family_display_2_material=0x7f0c0011; + public static final int abc_font_family_display_3_material=0x7f0c0012; + public static final int abc_font_family_display_4_material=0x7f0c0013; + public static final int abc_font_family_headline_material=0x7f0c0014; + public static final int abc_font_family_menu_material=0x7f0c0015; + public static final int abc_font_family_subhead_material=0x7f0c0016; + public static final int abc_font_family_title_material=0x7f0c0017; + public static final int abc_search_hint=0x7f0c0018; + public static final int abc_searchview_description_clear=0x7f0c0019; + public static final int abc_searchview_description_query=0x7f0c001a; + public static final int abc_searchview_description_search=0x7f0c001b; + public static final int abc_searchview_description_submit=0x7f0c001c; + public static final int abc_searchview_description_voice=0x7f0c001d; + public static final int abc_shareactionprovider_share_with=0x7f0c001e; + public static final int abc_shareactionprovider_share_with_application=0x7f0c001f; + public static final int abc_toolbar_collapse_description=0x7f0c0020; + public static final int about=0x7f0c0021; + public static final int add_shortcut_to_home=0x7f0c0022; + public static final int alarm_time=0x7f0c0023; + public static final int app_name=0x7f0c0024; + public static final int app_widget2x2=0x7f0c0025; + public static final int app_widget4x4=0x7f0c0026; + public static final int backupDataFailed=0x7f0c0027; + public static final int backupDataSuc=0x7f0c0028; + public static final int backup_data=0x7f0c0029; + public static final int change_font_size=0x7f0c002a; + public static final int change_password=0x7f0c002b; + public static final int change_password_failed=0x7f0c002c; + public static final int change_password_succ=0x7f0c002d; + public static final int clear_password=0x7f0c002e; + public static final int confirm_psd=0x7f0c002f; + public static final int delete=0x7f0c0030; + public static final int delete_note=0x7f0c0031; + public static final int edit_folder_title=0x7f0c0032; + public static final int edit_note=0x7f0c0033; + public static final int exportTXTFailed=0x7f0c0034; + public static final int exportTXTSuc=0x7f0c0035; + public static final int export_to_text=0x7f0c0036; + public static final int hello=0x7f0c0037; + public static final int move_out_of_folder=0x7f0c0038; + public static final int move_to_folder=0x7f0c0039; + public static final int new_folder=0x7f0c003a; + public static final int new_note=0x7f0c003b; + public static final int password=0x7f0c003c; + public static final int restoreDataFailed=0x7f0c003d; + public static final int restoreDataSuc=0x7f0c003e; + public static final int restore_data=0x7f0c003f; + public static final int search_menu_title=0x7f0c0040; + public static final int set_alarm_date=0x7f0c0041; + public static final int set_alarm_time=0x7f0c0042; + public static final int set_password=0x7f0c0043; + public static final int set_password_failde=0x7f0c0044; + public static final int set_password_succ=0x7f0c0045; + public static final int share_sms_or_email=0x7f0c0046; + public static final int share_with_email=0x7f0c0047; + public static final int share_with_sms=0x7f0c0048; + public static final int status_bar_notification_info_overflow=0x7f0c0049; + public static final int vertify_access=0x7f0c004a; + public static final int vertify_failed=0x7f0c004b; + } + public static final class style { + public static final int AlertDialog_AppCompat=0x7f0d0000; + public static final int AlertDialog_AppCompat_Light=0x7f0d0001; + public static final int Animation_AppCompat_Dialog=0x7f0d0002; + public static final int Animation_AppCompat_DropDownUp=0x7f0d0003; + public static final int AppTheme=0x7f0d0004; + public static final int Base_AlertDialog_AppCompat=0x7f0d0005; + public static final int Base_AlertDialog_AppCompat_Light=0x7f0d0006; + public static final int Base_Animation_AppCompat_Dialog=0x7f0d0007; + public static final int Base_Animation_AppCompat_DropDownUp=0x7f0d0008; + public static final int Base_DialogWindowTitle_AppCompat=0x7f0d0009; + public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0d000a; + public static final int Base_TextAppearance_AppCompat=0x7f0d000b; + public static final int Base_TextAppearance_AppCompat_Body1=0x7f0d000c; + public static final int Base_TextAppearance_AppCompat_Body2=0x7f0d000d; + public static final int Base_TextAppearance_AppCompat_Button=0x7f0d000e; + public static final int Base_TextAppearance_AppCompat_Caption=0x7f0d000f; + public static final int Base_TextAppearance_AppCompat_Display1=0x7f0d0010; + public static final int Base_TextAppearance_AppCompat_Display2=0x7f0d0011; + public static final int Base_TextAppearance_AppCompat_Display3=0x7f0d0012; + public static final int Base_TextAppearance_AppCompat_Display4=0x7f0d0013; + public static final int Base_TextAppearance_AppCompat_Headline=0x7f0d0014; + public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0d0015; + public static final int Base_TextAppearance_AppCompat_Large=0x7f0d0016; + public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0d0017; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0d0018; + public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0d0019; + public static final int Base_TextAppearance_AppCompat_Medium=0x7f0d001a; + public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0d001b; + public static final int Base_TextAppearance_AppCompat_Menu=0x7f0d001c; + public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0d001d; + public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0d001e; + public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0d001f; + public static final int Base_TextAppearance_AppCompat_Small=0x7f0d0020; + public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0d0021; + public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0d0022; + public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0d0023; + public static final int Base_TextAppearance_AppCompat_Title=0x7f0d0024; + public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0d0025; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0d0026; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0d0027; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0d0028; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0d0029; + public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0d002a; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0d002b; + public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0d002c; + public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0d002d; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0d002e; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0d002f; + public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0d0030; + public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0d0031; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0d0032; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0d0033; + public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0d0034; + public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0d0035; + public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0d0036; + public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0d0037; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0d0038; + public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0d0039; + public static final int Base_Theme_AppCompat=0x7f0d003a; + public static final int Base_Theme_AppCompat_CompactMenu=0x7f0d003b; + public static final int Base_Theme_AppCompat_Dialog=0x7f0d003c; + public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0d003d; + public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0d003e; + public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0d003f; + public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0d0040; + public static final int Base_Theme_AppCompat_Light=0x7f0d0041; + public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0d0042; + public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0d0043; + public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0d0044; + public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0d0045; + public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0d0046; + public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0d0047; + public static final int Base_ThemeOverlay_AppCompat=0x7f0d0048; + public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0d0049; + public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0d004a; + public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0d004b; + public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0d004c; + public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0d004d; + public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0d004e; + public static final int Base_V11_Theme_AppCompat_Dialog=0x7f0d004f; + public static final int Base_V11_Theme_AppCompat_Light_Dialog=0x7f0d0050; + public static final int Base_V11_ThemeOverlay_AppCompat_Dialog=0x7f0d0051; + public static final int Base_V12_Widget_AppCompat_AutoCompleteTextView=0x7f0d0052; + public static final int Base_V12_Widget_AppCompat_EditText=0x7f0d0053; + public static final int Base_V21_Theme_AppCompat=0x7f0d0054; + public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0d0055; + public static final int Base_V21_Theme_AppCompat_Light=0x7f0d0056; + public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0d0057; + public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0d0058; + public static final int Base_V22_Theme_AppCompat=0x7f0d0059; + public static final int Base_V22_Theme_AppCompat_Light=0x7f0d005a; + public static final int Base_V23_Theme_AppCompat=0x7f0d005b; + public static final int Base_V23_Theme_AppCompat_Light=0x7f0d005c; + public static final int Base_V7_Theme_AppCompat=0x7f0d005d; + public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0d005e; + public static final int Base_V7_Theme_AppCompat_Light=0x7f0d005f; + public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0d0060; + public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0d0061; + public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0d0062; + public static final int Base_V7_Widget_AppCompat_EditText=0x7f0d0063; + public static final int Base_Widget_AppCompat_ActionBar=0x7f0d0064; + public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0d0065; + public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0d0066; + public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0d0067; + public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0d0068; + public static final int Base_Widget_AppCompat_ActionButton=0x7f0d0069; + public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0d006a; + public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0d006b; + public static final int Base_Widget_AppCompat_ActionMode=0x7f0d006c; + public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0d006d; + public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0d006e; + public static final int Base_Widget_AppCompat_Button=0x7f0d006f; + public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0d0070; + public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0d0071; + public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0d0072; + public static final int Base_Widget_AppCompat_Button_Colored=0x7f0d0073; + public static final int Base_Widget_AppCompat_Button_Small=0x7f0d0074; + public static final int Base_Widget_AppCompat_ButtonBar=0x7f0d0075; + public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0d0076; + public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0d0077; + public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0d0078; + public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0d0079; + public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0d007a; + public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0d007b; + public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0d007c; + public static final int Base_Widget_AppCompat_EditText=0x7f0d007d; + public static final int Base_Widget_AppCompat_ImageButton=0x7f0d007e; + public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0d007f; + public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0d0080; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0d0081; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0d0082; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0d0083; + public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0d0084; + public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0d0085; + public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0d0086; + public static final int Base_Widget_AppCompat_ListMenuView=0x7f0d0087; + public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0d0088; + public static final int Base_Widget_AppCompat_ListView=0x7f0d0089; + public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0d008a; + public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0d008b; + public static final int Base_Widget_AppCompat_PopupMenu=0x7f0d008c; + public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0d008d; + public static final int Base_Widget_AppCompat_PopupWindow=0x7f0d008e; + public static final int Base_Widget_AppCompat_ProgressBar=0x7f0d008f; + public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0d0090; + public static final int Base_Widget_AppCompat_RatingBar=0x7f0d0091; + public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0d0092; + public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0d0093; + public static final int Base_Widget_AppCompat_SearchView=0x7f0d0094; + public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0d0095; + public static final int Base_Widget_AppCompat_SeekBar=0x7f0d0096; + public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0d0097; + public static final int Base_Widget_AppCompat_Spinner=0x7f0d0098; + public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0d0099; + public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0d009a; + public static final int Base_Widget_AppCompat_Toolbar=0x7f0d009b; + public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0d009c; + public static final int EditTextStyle=0x7f0d009d; + public static final int MySeekbarSytle=0x7f0d009e; + public static final int Platform_AppCompat=0x7f0d009f; + public static final int Platform_AppCompat_Light=0x7f0d00a0; + public static final int Platform_ThemeOverlay_AppCompat=0x7f0d00a1; + public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0d00a2; + public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0d00a3; + public static final int Platform_V11_AppCompat=0x7f0d00a4; + public static final int Platform_V11_AppCompat_Light=0x7f0d00a5; + public static final int Platform_V14_AppCompat=0x7f0d00a6; + public static final int Platform_V14_AppCompat_Light=0x7f0d00a7; + public static final int Platform_V21_AppCompat=0x7f0d00a8; + public static final int Platform_V21_AppCompat_Light=0x7f0d00a9; + public static final int Platform_V25_AppCompat=0x7f0d00aa; + public static final int Platform_V25_AppCompat_Light=0x7f0d00ab; + public static final int Platform_Widget_AppCompat_Spinner=0x7f0d00ac; + public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0d00ad; + public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0d00ae; + public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0d00af; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0d00b0; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0d00b1; + public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0d00b2; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0d00b3; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0d00b4; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0d00b5; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0d00b6; + public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0d00b7; + public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0d00b8; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0d00b9; + public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0d00ba; + public static final int TextAppearance_AppCompat=0x7f0d00bb; + public static final int TextAppearance_AppCompat_Body1=0x7f0d00bc; + public static final int TextAppearance_AppCompat_Body2=0x7f0d00bd; + public static final int TextAppearance_AppCompat_Button=0x7f0d00be; + public static final int TextAppearance_AppCompat_Caption=0x7f0d00bf; + public static final int TextAppearance_AppCompat_Display1=0x7f0d00c0; + public static final int TextAppearance_AppCompat_Display2=0x7f0d00c1; + public static final int TextAppearance_AppCompat_Display3=0x7f0d00c2; + public static final int TextAppearance_AppCompat_Display4=0x7f0d00c3; + public static final int TextAppearance_AppCompat_Headline=0x7f0d00c4; + public static final int TextAppearance_AppCompat_Inverse=0x7f0d00c5; + public static final int TextAppearance_AppCompat_Large=0x7f0d00c6; + public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0d00c7; + public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0d00c8; + public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0d00c9; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0d00ca; + public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0d00cb; + public static final int TextAppearance_AppCompat_Medium=0x7f0d00cc; + public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0d00cd; + public static final int TextAppearance_AppCompat_Menu=0x7f0d00ce; + public static final int TextAppearance_AppCompat_Notification=0x7f0d00cf; + public static final int TextAppearance_AppCompat_Notification_Info=0x7f0d00d0; + public static final int TextAppearance_AppCompat_Notification_Info_Media=0x7f0d00d1; + public static final int TextAppearance_AppCompat_Notification_Line2=0x7f0d00d2; + public static final int TextAppearance_AppCompat_Notification_Line2_Media=0x7f0d00d3; + public static final int TextAppearance_AppCompat_Notification_Media=0x7f0d00d4; + public static final int TextAppearance_AppCompat_Notification_Time=0x7f0d00d5; + public static final int TextAppearance_AppCompat_Notification_Time_Media=0x7f0d00d6; + public static final int TextAppearance_AppCompat_Notification_Title=0x7f0d00d7; + public static final int TextAppearance_AppCompat_Notification_Title_Media=0x7f0d00d8; + public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0d00d9; + public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0d00da; + public static final int TextAppearance_AppCompat_Small=0x7f0d00db; + public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0d00dc; + public static final int TextAppearance_AppCompat_Subhead=0x7f0d00dd; + public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0d00de; + public static final int TextAppearance_AppCompat_Title=0x7f0d00df; + public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0d00e0; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0d00e1; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0d00e2; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0d00e3; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0d00e4; + public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0d00e5; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0d00e6; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0d00e7; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0d00e8; + public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0d00e9; + public static final int TextAppearance_AppCompat_Widget_Button=0x7f0d00ea; + public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0d00eb; + public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0d00ec; + public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0d00ed; + public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0d00ee; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0d00ef; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0d00f0; + public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0d00f1; + public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0d00f2; + public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0d00f3; + public static final int TextAppearance_StatusBar_EventContent=0x7f0d00f4; + public static final int TextAppearance_StatusBar_EventContent_Info=0x7f0d00f5; + public static final int TextAppearance_StatusBar_EventContent_Line2=0x7f0d00f6; + public static final int TextAppearance_StatusBar_EventContent_Time=0x7f0d00f7; + public static final int TextAppearance_StatusBar_EventContent_Title=0x7f0d00f8; + public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0d00f9; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0d00fa; + public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0d00fb; + public static final int Theme_AppCompat=0x7f0d00fc; + public static final int Theme_AppCompat_CompactMenu=0x7f0d00fd; + public static final int Theme_AppCompat_DayNight=0x7f0d00fe; + public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0d00ff; + public static final int Theme_AppCompat_DayNight_Dialog=0x7f0d0100; + public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0d0101; + public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0d0102; + public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0d0103; + public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0d0104; + public static final int Theme_AppCompat_Dialog=0x7f0d0105; + public static final int Theme_AppCompat_Dialog_Alert=0x7f0d0106; + public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0d0107; + public static final int Theme_AppCompat_DialogWhenLarge=0x7f0d0108; + public static final int Theme_AppCompat_Light=0x7f0d0109; + public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0d010a; + public static final int Theme_AppCompat_Light_Dialog=0x7f0d010b; + public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0d010c; + public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0d010d; + public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0d010e; + public static final int Theme_AppCompat_Light_NoActionBar=0x7f0d010f; + public static final int Theme_AppCompat_NoActionBar=0x7f0d0110; + public static final int ThemeOverlay_AppCompat=0x7f0d0111; + public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0d0112; + public static final int ThemeOverlay_AppCompat_Dark=0x7f0d0113; + public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0d0114; + public static final int ThemeOverlay_AppCompat_Dialog=0x7f0d0115; + public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0d0116; + public static final int ThemeOverlay_AppCompat_Light=0x7f0d0117; + public static final int TitleBarImageButton=0x7f0d0118; + public static final int TitleBarLinearLayout=0x7f0d0119; + public static final int TitleBarTextView=0x7f0d011a; + public static final int Widget_AppCompat_ActionBar=0x7f0d011b; + public static final int Widget_AppCompat_ActionBar_Solid=0x7f0d011c; + public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0d011d; + public static final int Widget_AppCompat_ActionBar_TabText=0x7f0d011e; + public static final int Widget_AppCompat_ActionBar_TabView=0x7f0d011f; + public static final int Widget_AppCompat_ActionButton=0x7f0d0120; + public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0d0121; + public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0d0122; + public static final int Widget_AppCompat_ActionMode=0x7f0d0123; + public static final int Widget_AppCompat_ActivityChooserView=0x7f0d0124; + public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0d0125; + public static final int Widget_AppCompat_Button=0x7f0d0126; + public static final int Widget_AppCompat_Button_Borderless=0x7f0d0127; + public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0d0128; + public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0d0129; + public static final int Widget_AppCompat_Button_Colored=0x7f0d012a; + public static final int Widget_AppCompat_Button_Small=0x7f0d012b; + public static final int Widget_AppCompat_ButtonBar=0x7f0d012c; + public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0d012d; + public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0d012e; + public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0d012f; + public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0d0130; + public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0d0131; + public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0d0132; + public static final int Widget_AppCompat_EditText=0x7f0d0133; + public static final int Widget_AppCompat_ImageButton=0x7f0d0134; + public static final int Widget_AppCompat_Light_ActionBar=0x7f0d0135; + public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0d0136; + public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0d0137; + public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0d0138; + public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0d0139; + public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0d013a; + public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0d013b; + public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0d013c; + public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0d013d; + public static final int Widget_AppCompat_Light_ActionButton=0x7f0d013e; + public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0d013f; + public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0d0140; + public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0d0141; + public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0d0142; + public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0d0143; + public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0d0144; + public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0d0145; + public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0d0146; + public static final int Widget_AppCompat_Light_PopupMenu=0x7f0d0147; + public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0d0148; + public static final int Widget_AppCompat_Light_SearchView=0x7f0d0149; + public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0d014a; + public static final int Widget_AppCompat_ListMenuView=0x7f0d014b; + public static final int Widget_AppCompat_ListPopupWindow=0x7f0d014c; + public static final int Widget_AppCompat_ListView=0x7f0d014d; + public static final int Widget_AppCompat_ListView_DropDown=0x7f0d014e; + public static final int Widget_AppCompat_ListView_Menu=0x7f0d014f; + public static final int Widget_AppCompat_NotificationActionContainer=0x7f0d0150; + public static final int Widget_AppCompat_NotificationActionText=0x7f0d0151; + public static final int Widget_AppCompat_PopupMenu=0x7f0d0152; + public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0d0153; + public static final int Widget_AppCompat_PopupWindow=0x7f0d0154; + public static final int Widget_AppCompat_ProgressBar=0x7f0d0155; + public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0d0156; + public static final int Widget_AppCompat_RatingBar=0x7f0d0157; + public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0d0158; + public static final int Widget_AppCompat_RatingBar_Small=0x7f0d0159; + public static final int Widget_AppCompat_SearchView=0x7f0d015a; + public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0d015b; + public static final int Widget_AppCompat_SeekBar=0x7f0d015c; + public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0d015d; + public static final int Widget_AppCompat_Spinner=0x7f0d015e; + public static final int Widget_AppCompat_Spinner_DropDown=0x7f0d015f; + public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0d0160; + public static final int Widget_AppCompat_Spinner_Underlined=0x7f0d0161; + public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0d0162; + public static final int Widget_AppCompat_Toolbar=0x7f0d0163; + public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0d0164; + } + public static final class styleable { + /** + * Attributes that can be used with a ActionBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionBar_background com.xnote.activity:background}
{@link #ActionBar_backgroundSplit com.xnote.activity:backgroundSplit}
{@link #ActionBar_backgroundStacked com.xnote.activity:backgroundStacked}
{@link #ActionBar_contentInsetEnd com.xnote.activity:contentInsetEnd}
{@link #ActionBar_contentInsetEndWithActions com.xnote.activity:contentInsetEndWithActions}
{@link #ActionBar_contentInsetLeft com.xnote.activity:contentInsetLeft}
{@link #ActionBar_contentInsetRight com.xnote.activity:contentInsetRight}
{@link #ActionBar_contentInsetStart com.xnote.activity:contentInsetStart}
{@link #ActionBar_contentInsetStartWithNavigation com.xnote.activity:contentInsetStartWithNavigation}
{@link #ActionBar_customNavigationLayout com.xnote.activity:customNavigationLayout}
{@link #ActionBar_displayOptions com.xnote.activity:displayOptions}
{@link #ActionBar_divider com.xnote.activity:divider}
{@link #ActionBar_elevation com.xnote.activity:elevation}
{@link #ActionBar_height com.xnote.activity:height}
{@link #ActionBar_hideOnContentScroll com.xnote.activity:hideOnContentScroll}
{@link #ActionBar_homeAsUpIndicator com.xnote.activity:homeAsUpIndicator}
{@link #ActionBar_homeLayout com.xnote.activity:homeLayout}
{@link #ActionBar_icon com.xnote.activity:icon}
{@link #ActionBar_indeterminateProgressStyle com.xnote.activity:indeterminateProgressStyle}
{@link #ActionBar_itemPadding com.xnote.activity:itemPadding}
{@link #ActionBar_logo com.xnote.activity:logo}
{@link #ActionBar_navigationMode com.xnote.activity:navigationMode}
{@link #ActionBar_popupTheme com.xnote.activity:popupTheme}
{@link #ActionBar_progressBarPadding com.xnote.activity:progressBarPadding}
{@link #ActionBar_progressBarStyle com.xnote.activity:progressBarStyle}
{@link #ActionBar_subtitle com.xnote.activity:subtitle}
{@link #ActionBar_subtitleTextStyle com.xnote.activity:subtitleTextStyle}
{@link #ActionBar_title com.xnote.activity:title}
{@link #ActionBar_titleTextStyle com.xnote.activity:titleTextStyle}
+ * @see #ActionBar_background + * @see #ActionBar_backgroundSplit + * @see #ActionBar_backgroundStacked + * @see #ActionBar_contentInsetEnd + * @see #ActionBar_contentInsetEndWithActions + * @see #ActionBar_contentInsetLeft + * @see #ActionBar_contentInsetRight + * @see #ActionBar_contentInsetStart + * @see #ActionBar_contentInsetStartWithNavigation + * @see #ActionBar_customNavigationLayout + * @see #ActionBar_displayOptions + * @see #ActionBar_divider + * @see #ActionBar_elevation + * @see #ActionBar_height + * @see #ActionBar_hideOnContentScroll + * @see #ActionBar_homeAsUpIndicator + * @see #ActionBar_homeLayout + * @see #ActionBar_icon + * @see #ActionBar_indeterminateProgressStyle + * @see #ActionBar_itemPadding + * @see #ActionBar_logo + * @see #ActionBar_navigationMode + * @see #ActionBar_popupTheme + * @see #ActionBar_progressBarPadding + * @see #ActionBar_progressBarStyle + * @see #ActionBar_subtitle + * @see #ActionBar_subtitleTextStyle + * @see #ActionBar_title + * @see #ActionBar_titleTextStyle + */ + public static final int[] ActionBar={ + 0x7f02002b, 0x7f02002c, 0x7f02002d, 0x7f02004f, + 0x7f020050, 0x7f020051, 0x7f020052, 0x7f020053, + 0x7f020054, 0x7f020056, 0x7f02005a, 0x7f02005b, + 0x7f020066, 0x7f02006a, 0x7f02006b, 0x7f02006c, + 0x7f02006d, 0x7f02006e, 0x7f020071, 0x7f020074, + 0x7f020081, 0x7f02008a, 0x7f020094, 0x7f020097, + 0x7f020098, 0x7f0200b4, 0x7f0200b7, 0x7f0200d0, + 0x7f0200d9 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#background} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:background + */ + public static final int ActionBar_background=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#backgroundSplit} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:backgroundSplit + */ + public static final int ActionBar_backgroundSplit=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#backgroundStacked} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:backgroundStacked + */ + public static final int ActionBar_backgroundStacked=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetEnd} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetEnd + */ + public static final int ActionBar_contentInsetEnd=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetEndWithActions} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetEndWithActions + */ + public static final int ActionBar_contentInsetEndWithActions=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetLeft} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetLeft + */ + public static final int ActionBar_contentInsetLeft=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetRight} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetRight + */ + public static final int ActionBar_contentInsetRight=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetStart} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetStart + */ + public static final int ActionBar_contentInsetStart=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetStartWithNavigation} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetStartWithNavigation + */ + public static final int ActionBar_contentInsetStartWithNavigation=8; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#customNavigationLayout} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:customNavigationLayout + */ + public static final int ActionBar_customNavigationLayout=9; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#displayOptions} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
disableHome20
homeAsUp4
none0
showCustom10
showHome2
showTitle8
useLogo1
+ * + * @attr name com.xnote.activity:displayOptions + */ + public static final int ActionBar_displayOptions=10; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#divider} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:divider + */ + public static final int ActionBar_divider=11; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#elevation} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:elevation + */ + public static final int ActionBar_elevation=12; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#height} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:height + */ + public static final int ActionBar_height=13; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#hideOnContentScroll} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:hideOnContentScroll + */ + public static final int ActionBar_hideOnContentScroll=14; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#homeAsUpIndicator} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:homeAsUpIndicator + */ + public static final int ActionBar_homeAsUpIndicator=15; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#homeLayout} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:homeLayout + */ + public static final int ActionBar_homeLayout=16; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#icon} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:icon + */ + public static final int ActionBar_icon=17; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#indeterminateProgressStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:indeterminateProgressStyle + */ + public static final int ActionBar_indeterminateProgressStyle=18; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#itemPadding} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:itemPadding + */ + public static final int ActionBar_itemPadding=19; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#logo} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:logo + */ + public static final int ActionBar_logo=20; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#navigationMode} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
listMode1
normal0
tabMode2
+ * + * @attr name com.xnote.activity:navigationMode + */ + public static final int ActionBar_navigationMode=21; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#popupTheme} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:popupTheme + */ + public static final int ActionBar_popupTheme=22; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#progressBarPadding} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:progressBarPadding + */ + public static final int ActionBar_progressBarPadding=23; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#progressBarStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:progressBarStyle + */ + public static final int ActionBar_progressBarStyle=24; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subtitle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:subtitle + */ + public static final int ActionBar_subtitle=25; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subtitleTextStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:subtitleTextStyle + */ + public static final int ActionBar_subtitleTextStyle=26; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#title} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:title + */ + public static final int ActionBar_title=27; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleTextStyle} + * attribute's value can be found in the {@link #ActionBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:titleTextStyle + */ + public static final int ActionBar_titleTextStyle=28; + /** + * Attributes that can be used with a ActionBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}
+ * @see #ActionBarLayout_android_layout_gravity + */ + public static final int[] ActionBarLayout={ + 0x010100b3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #ActionBarLayout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int ActionBarLayout_android_layout_gravity=0; + /** + * Attributes that can be used with a ActionMenuItemView. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ActionMenuItemView_android_minWidth android:minWidth}
+ * @see #ActionMenuItemView_android_minWidth + */ + public static final int[] ActionMenuItemView={ + 0x0101013f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#minWidth} + * attribute's value can be found in the {@link #ActionMenuItemView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minWidth + */ + public static final int ActionMenuItemView_android_minWidth=0; + public static final int[] ActionMenuView={ + }; + /** + * Attributes that can be used with a ActionMode. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #ActionMode_background com.xnote.activity:background}
{@link #ActionMode_backgroundSplit com.xnote.activity:backgroundSplit}
{@link #ActionMode_closeItemLayout com.xnote.activity:closeItemLayout}
{@link #ActionMode_height com.xnote.activity:height}
{@link #ActionMode_subtitleTextStyle com.xnote.activity:subtitleTextStyle}
{@link #ActionMode_titleTextStyle com.xnote.activity:titleTextStyle}
+ * @see #ActionMode_background + * @see #ActionMode_backgroundSplit + * @see #ActionMode_closeItemLayout + * @see #ActionMode_height + * @see #ActionMode_subtitleTextStyle + * @see #ActionMode_titleTextStyle + */ + public static final int[] ActionMode={ + 0x7f02002b, 0x7f02002c, 0x7f020041, 0x7f02006a, + 0x7f0200b7, 0x7f0200d9 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#background} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:background + */ + public static final int ActionMode_background=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#backgroundSplit} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:backgroundSplit + */ + public static final int ActionMode_backgroundSplit=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#closeItemLayout} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:closeItemLayout + */ + public static final int ActionMode_closeItemLayout=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#height} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:height + */ + public static final int ActionMode_height=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subtitleTextStyle} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:subtitleTextStyle + */ + public static final int ActionMode_subtitleTextStyle=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleTextStyle} + * attribute's value can be found in the {@link #ActionMode} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:titleTextStyle + */ + public static final int ActionMode_titleTextStyle=5; + /** + * Attributes that can be used with a ActivityChooserView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.xnote.activity:expandActivityOverflowButtonDrawable}
{@link #ActivityChooserView_initialActivityCount com.xnote.activity:initialActivityCount}
+ * @see #ActivityChooserView_expandActivityOverflowButtonDrawable + * @see #ActivityChooserView_initialActivityCount + */ + public static final int[] ActivityChooserView={ + 0x7f020067, 0x7f020072 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#expandActivityOverflowButtonDrawable} + * attribute's value can be found in the {@link #ActivityChooserView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:expandActivityOverflowButtonDrawable + */ + public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#initialActivityCount} + * attribute's value can be found in the {@link #ActivityChooserView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:initialActivityCount + */ + public static final int ActivityChooserView_initialActivityCount=1; + /** + * Attributes that can be used with a AlertDialog. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AlertDialog_android_layout android:layout}
{@link #AlertDialog_buttonPanelSideLayout com.xnote.activity:buttonPanelSideLayout}
{@link #AlertDialog_listItemLayout com.xnote.activity:listItemLayout}
{@link #AlertDialog_listLayout com.xnote.activity:listLayout}
{@link #AlertDialog_multiChoiceItemLayout com.xnote.activity:multiChoiceItemLayout}
{@link #AlertDialog_showTitle com.xnote.activity:showTitle}
{@link #AlertDialog_singleChoiceItemLayout com.xnote.activity:singleChoiceItemLayout}
+ * @see #AlertDialog_android_layout + * @see #AlertDialog_buttonPanelSideLayout + * @see #AlertDialog_listItemLayout + * @see #AlertDialog_listLayout + * @see #AlertDialog_multiChoiceItemLayout + * @see #AlertDialog_showTitle + * @see #AlertDialog_singleChoiceItemLayout + */ + public static final int[] AlertDialog={ + 0x010100f2, 0x7f020039, 0x7f020078, 0x7f020079, + 0x7f020087, 0x7f0200a9, 0x7f0200aa + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int AlertDialog_android_layout=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonPanelSideLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonPanelSideLayout + */ + public static final int AlertDialog_buttonPanelSideLayout=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:listItemLayout + */ + public static final int AlertDialog_listItemLayout=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:listLayout + */ + public static final int AlertDialog_listLayout=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#multiChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:multiChoiceItemLayout + */ + public static final int AlertDialog_multiChoiceItemLayout=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#showTitle} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:showTitle + */ + public static final int AlertDialog_showTitle=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#singleChoiceItemLayout} + * attribute's value can be found in the {@link #AlertDialog} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:singleChoiceItemLayout + */ + public static final int AlertDialog_singleChoiceItemLayout=6; + /** + * Attributes that can be used with a AppCompatImageView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatImageView_android_src android:src}
{@link #AppCompatImageView_srcCompat com.xnote.activity:srcCompat}
+ * @see #AppCompatImageView_android_src + * @see #AppCompatImageView_srcCompat + */ + public static final int[] AppCompatImageView={ + 0x01010119, 0x7f0200b0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#src} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:src + */ + public static final int AppCompatImageView_android_src=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#srcCompat} + * attribute's value can be found in the {@link #AppCompatImageView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:srcCompat + */ + public static final int AppCompatImageView_srcCompat=1; + /** + * Attributes that can be used with a AppCompatSeekBar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatSeekBar_android_thumb android:thumb}
{@link #AppCompatSeekBar_tickMark com.xnote.activity:tickMark}
{@link #AppCompatSeekBar_tickMarkTint com.xnote.activity:tickMarkTint}
{@link #AppCompatSeekBar_tickMarkTintMode com.xnote.activity:tickMarkTintMode}
+ * @see #AppCompatSeekBar_android_thumb + * @see #AppCompatSeekBar_tickMark + * @see #AppCompatSeekBar_tickMarkTint + * @see #AppCompatSeekBar_tickMarkTintMode + */ + public static final int[] AppCompatSeekBar={ + 0x01010142, 0x7f0200cd, 0x7f0200ce, 0x7f0200cf + }; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int AppCompatSeekBar_android_thumb=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#tickMark} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:tickMark + */ + public static final int AppCompatSeekBar_tickMark=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#tickMarkTint} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:tickMarkTint + */ + public static final int AppCompatSeekBar_tickMarkTint=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#tickMarkTintMode} + * attribute's value can be found in the {@link #AppCompatSeekBar} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name com.xnote.activity:tickMarkTintMode + */ + public static final int AppCompatSeekBar_tickMarkTintMode=3; + /** + * Attributes that can be used with a AppCompatTextHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}
{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}
{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}
{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}
{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}
{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}
{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}
+ * @see #AppCompatTextHelper_android_textAppearance + * @see #AppCompatTextHelper_android_drawableTop + * @see #AppCompatTextHelper_android_drawableBottom + * @see #AppCompatTextHelper_android_drawableLeft + * @see #AppCompatTextHelper_android_drawableRight + * @see #AppCompatTextHelper_android_drawableStart + * @see #AppCompatTextHelper_android_drawableEnd + */ + public static final int[] AppCompatTextHelper={ + 0x01010034, 0x0101016d, 0x0101016e, 0x0101016f, + 0x01010170, 0x01010392, 0x01010393 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextHelper_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableTop} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableTop + */ + public static final int AppCompatTextHelper_android_drawableTop=1; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableBottom} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableBottom + */ + public static final int AppCompatTextHelper_android_drawableBottom=2; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableLeft} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableLeft + */ + public static final int AppCompatTextHelper_android_drawableLeft=3; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableRight} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableRight + */ + public static final int AppCompatTextHelper_android_drawableRight=4; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableStart} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableStart + */ + public static final int AppCompatTextHelper_android_drawableStart=5; + /** + *

This symbol is the offset where the {@link android.R.attr#drawableEnd} + * attribute's value can be found in the {@link #AppCompatTextHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:drawableEnd + */ + public static final int AppCompatTextHelper_android_drawableEnd=6; + /** + * Attributes that can be used with a AppCompatTextView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTextView_android_textAppearance android:textAppearance}
{@link #AppCompatTextView_textAllCaps com.xnote.activity:textAllCaps}
+ * @see #AppCompatTextView_android_textAppearance + * @see #AppCompatTextView_textAllCaps + */ + public static final int[] AppCompatTextView={ + 0x01010034, 0x7f0200bd + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textAppearance} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:textAppearance + */ + public static final int AppCompatTextView_android_textAppearance=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAllCaps} + * attribute's value can be found in the {@link #AppCompatTextView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:textAllCaps + */ + public static final int AppCompatTextView_textAllCaps=1; + /** + * Attributes that can be used with a AppCompatTheme. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}
{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}
{@link #AppCompatTheme_actionBarDivider com.xnote.activity:actionBarDivider}
{@link #AppCompatTheme_actionBarItemBackground com.xnote.activity:actionBarItemBackground}
{@link #AppCompatTheme_actionBarPopupTheme com.xnote.activity:actionBarPopupTheme}
{@link #AppCompatTheme_actionBarSize com.xnote.activity:actionBarSize}
{@link #AppCompatTheme_actionBarSplitStyle com.xnote.activity:actionBarSplitStyle}
{@link #AppCompatTheme_actionBarStyle com.xnote.activity:actionBarStyle}
{@link #AppCompatTheme_actionBarTabBarStyle com.xnote.activity:actionBarTabBarStyle}
{@link #AppCompatTheme_actionBarTabStyle com.xnote.activity:actionBarTabStyle}
{@link #AppCompatTheme_actionBarTabTextStyle com.xnote.activity:actionBarTabTextStyle}
{@link #AppCompatTheme_actionBarTheme com.xnote.activity:actionBarTheme}
{@link #AppCompatTheme_actionBarWidgetTheme com.xnote.activity:actionBarWidgetTheme}
{@link #AppCompatTheme_actionButtonStyle com.xnote.activity:actionButtonStyle}
{@link #AppCompatTheme_actionDropDownStyle com.xnote.activity:actionDropDownStyle}
{@link #AppCompatTheme_actionMenuTextAppearance com.xnote.activity:actionMenuTextAppearance}
{@link #AppCompatTheme_actionMenuTextColor com.xnote.activity:actionMenuTextColor}
{@link #AppCompatTheme_actionModeBackground com.xnote.activity:actionModeBackground}
{@link #AppCompatTheme_actionModeCloseButtonStyle com.xnote.activity:actionModeCloseButtonStyle}
{@link #AppCompatTheme_actionModeCloseDrawable com.xnote.activity:actionModeCloseDrawable}
{@link #AppCompatTheme_actionModeCopyDrawable com.xnote.activity:actionModeCopyDrawable}
{@link #AppCompatTheme_actionModeCutDrawable com.xnote.activity:actionModeCutDrawable}
{@link #AppCompatTheme_actionModeFindDrawable com.xnote.activity:actionModeFindDrawable}
{@link #AppCompatTheme_actionModePasteDrawable com.xnote.activity:actionModePasteDrawable}
{@link #AppCompatTheme_actionModePopupWindowStyle com.xnote.activity:actionModePopupWindowStyle}
{@link #AppCompatTheme_actionModeSelectAllDrawable com.xnote.activity:actionModeSelectAllDrawable}
{@link #AppCompatTheme_actionModeShareDrawable com.xnote.activity:actionModeShareDrawable}
{@link #AppCompatTheme_actionModeSplitBackground com.xnote.activity:actionModeSplitBackground}
{@link #AppCompatTheme_actionModeStyle com.xnote.activity:actionModeStyle}
{@link #AppCompatTheme_actionModeWebSearchDrawable com.xnote.activity:actionModeWebSearchDrawable}
{@link #AppCompatTheme_actionOverflowButtonStyle com.xnote.activity:actionOverflowButtonStyle}
{@link #AppCompatTheme_actionOverflowMenuStyle com.xnote.activity:actionOverflowMenuStyle}
{@link #AppCompatTheme_activityChooserViewStyle com.xnote.activity:activityChooserViewStyle}
{@link #AppCompatTheme_alertDialogButtonGroupStyle com.xnote.activity:alertDialogButtonGroupStyle}
{@link #AppCompatTheme_alertDialogCenterButtons com.xnote.activity:alertDialogCenterButtons}
{@link #AppCompatTheme_alertDialogStyle com.xnote.activity:alertDialogStyle}
{@link #AppCompatTheme_alertDialogTheme com.xnote.activity:alertDialogTheme}
{@link #AppCompatTheme_autoCompleteTextViewStyle com.xnote.activity:autoCompleteTextViewStyle}
{@link #AppCompatTheme_borderlessButtonStyle com.xnote.activity:borderlessButtonStyle}
{@link #AppCompatTheme_buttonBarButtonStyle com.xnote.activity:buttonBarButtonStyle}
{@link #AppCompatTheme_buttonBarNegativeButtonStyle com.xnote.activity:buttonBarNegativeButtonStyle}
{@link #AppCompatTheme_buttonBarNeutralButtonStyle com.xnote.activity:buttonBarNeutralButtonStyle}
{@link #AppCompatTheme_buttonBarPositiveButtonStyle com.xnote.activity:buttonBarPositiveButtonStyle}
{@link #AppCompatTheme_buttonBarStyle com.xnote.activity:buttonBarStyle}
{@link #AppCompatTheme_buttonStyle com.xnote.activity:buttonStyle}
{@link #AppCompatTheme_buttonStyleSmall com.xnote.activity:buttonStyleSmall}
{@link #AppCompatTheme_checkboxStyle com.xnote.activity:checkboxStyle}
{@link #AppCompatTheme_checkedTextViewStyle com.xnote.activity:checkedTextViewStyle}
{@link #AppCompatTheme_colorAccent com.xnote.activity:colorAccent}
{@link #AppCompatTheme_colorBackgroundFloating com.xnote.activity:colorBackgroundFloating}
{@link #AppCompatTheme_colorButtonNormal com.xnote.activity:colorButtonNormal}
{@link #AppCompatTheme_colorControlActivated com.xnote.activity:colorControlActivated}
{@link #AppCompatTheme_colorControlHighlight com.xnote.activity:colorControlHighlight}
{@link #AppCompatTheme_colorControlNormal com.xnote.activity:colorControlNormal}
{@link #AppCompatTheme_colorPrimary com.xnote.activity:colorPrimary}
{@link #AppCompatTheme_colorPrimaryDark com.xnote.activity:colorPrimaryDark}
{@link #AppCompatTheme_colorSwitchThumbNormal com.xnote.activity:colorSwitchThumbNormal}
{@link #AppCompatTheme_controlBackground com.xnote.activity:controlBackground}
{@link #AppCompatTheme_dialogPreferredPadding com.xnote.activity:dialogPreferredPadding}
{@link #AppCompatTheme_dialogTheme com.xnote.activity:dialogTheme}
{@link #AppCompatTheme_dividerHorizontal com.xnote.activity:dividerHorizontal}
{@link #AppCompatTheme_dividerVertical com.xnote.activity:dividerVertical}
{@link #AppCompatTheme_dropDownListViewStyle com.xnote.activity:dropDownListViewStyle}
{@link #AppCompatTheme_dropdownListPreferredItemHeight com.xnote.activity:dropdownListPreferredItemHeight}
{@link #AppCompatTheme_editTextBackground com.xnote.activity:editTextBackground}
{@link #AppCompatTheme_editTextColor com.xnote.activity:editTextColor}
{@link #AppCompatTheme_editTextStyle com.xnote.activity:editTextStyle}
{@link #AppCompatTheme_homeAsUpIndicator com.xnote.activity:homeAsUpIndicator}
{@link #AppCompatTheme_imageButtonStyle com.xnote.activity:imageButtonStyle}
{@link #AppCompatTheme_listChoiceBackgroundIndicator com.xnote.activity:listChoiceBackgroundIndicator}
{@link #AppCompatTheme_listDividerAlertDialog com.xnote.activity:listDividerAlertDialog}
{@link #AppCompatTheme_listMenuViewStyle com.xnote.activity:listMenuViewStyle}
{@link #AppCompatTheme_listPopupWindowStyle com.xnote.activity:listPopupWindowStyle}
{@link #AppCompatTheme_listPreferredItemHeight com.xnote.activity:listPreferredItemHeight}
{@link #AppCompatTheme_listPreferredItemHeightLarge com.xnote.activity:listPreferredItemHeightLarge}
{@link #AppCompatTheme_listPreferredItemHeightSmall com.xnote.activity:listPreferredItemHeightSmall}
{@link #AppCompatTheme_listPreferredItemPaddingLeft com.xnote.activity:listPreferredItemPaddingLeft}
{@link #AppCompatTheme_listPreferredItemPaddingRight com.xnote.activity:listPreferredItemPaddingRight}
{@link #AppCompatTheme_panelBackground com.xnote.activity:panelBackground}
{@link #AppCompatTheme_panelMenuListTheme com.xnote.activity:panelMenuListTheme}
{@link #AppCompatTheme_panelMenuListWidth com.xnote.activity:panelMenuListWidth}
{@link #AppCompatTheme_popupMenuStyle com.xnote.activity:popupMenuStyle}
{@link #AppCompatTheme_popupWindowStyle com.xnote.activity:popupWindowStyle}
{@link #AppCompatTheme_radioButtonStyle com.xnote.activity:radioButtonStyle}
{@link #AppCompatTheme_ratingBarStyle com.xnote.activity:ratingBarStyle}
{@link #AppCompatTheme_ratingBarStyleIndicator com.xnote.activity:ratingBarStyleIndicator}
{@link #AppCompatTheme_ratingBarStyleSmall com.xnote.activity:ratingBarStyleSmall}
{@link #AppCompatTheme_searchViewStyle com.xnote.activity:searchViewStyle}
{@link #AppCompatTheme_seekBarStyle com.xnote.activity:seekBarStyle}
{@link #AppCompatTheme_selectableItemBackground com.xnote.activity:selectableItemBackground}
{@link #AppCompatTheme_selectableItemBackgroundBorderless com.xnote.activity:selectableItemBackgroundBorderless}
{@link #AppCompatTheme_spinnerDropDownItemStyle com.xnote.activity:spinnerDropDownItemStyle}
{@link #AppCompatTheme_spinnerStyle com.xnote.activity:spinnerStyle}
{@link #AppCompatTheme_switchStyle com.xnote.activity:switchStyle}
{@link #AppCompatTheme_textAppearanceLargePopupMenu com.xnote.activity:textAppearanceLargePopupMenu}
{@link #AppCompatTheme_textAppearanceListItem com.xnote.activity:textAppearanceListItem}
{@link #AppCompatTheme_textAppearanceListItemSmall com.xnote.activity:textAppearanceListItemSmall}
{@link #AppCompatTheme_textAppearancePopupMenuHeader com.xnote.activity:textAppearancePopupMenuHeader}
{@link #AppCompatTheme_textAppearanceSearchResultSubtitle com.xnote.activity:textAppearanceSearchResultSubtitle}
{@link #AppCompatTheme_textAppearanceSearchResultTitle com.xnote.activity:textAppearanceSearchResultTitle}
{@link #AppCompatTheme_textAppearanceSmallPopupMenu com.xnote.activity:textAppearanceSmallPopupMenu}
{@link #AppCompatTheme_textColorAlertDialogListItem com.xnote.activity:textColorAlertDialogListItem}
{@link #AppCompatTheme_textColorSearchUrl com.xnote.activity:textColorSearchUrl}
{@link #AppCompatTheme_toolbarNavigationButtonStyle com.xnote.activity:toolbarNavigationButtonStyle}
{@link #AppCompatTheme_toolbarStyle com.xnote.activity:toolbarStyle}
{@link #AppCompatTheme_windowActionBar com.xnote.activity:windowActionBar}
{@link #AppCompatTheme_windowActionBarOverlay com.xnote.activity:windowActionBarOverlay}
{@link #AppCompatTheme_windowActionModeOverlay com.xnote.activity:windowActionModeOverlay}
{@link #AppCompatTheme_windowFixedHeightMajor com.xnote.activity:windowFixedHeightMajor}
{@link #AppCompatTheme_windowFixedHeightMinor com.xnote.activity:windowFixedHeightMinor}
{@link #AppCompatTheme_windowFixedWidthMajor com.xnote.activity:windowFixedWidthMajor}
{@link #AppCompatTheme_windowFixedWidthMinor com.xnote.activity:windowFixedWidthMinor}
{@link #AppCompatTheme_windowMinWidthMajor com.xnote.activity:windowMinWidthMajor}
{@link #AppCompatTheme_windowMinWidthMinor com.xnote.activity:windowMinWidthMinor}
{@link #AppCompatTheme_windowNoTitle com.xnote.activity:windowNoTitle}
+ * @see #AppCompatTheme_android_windowIsFloating + * @see #AppCompatTheme_android_windowAnimationStyle + * @see #AppCompatTheme_actionBarDivider + * @see #AppCompatTheme_actionBarItemBackground + * @see #AppCompatTheme_actionBarPopupTheme + * @see #AppCompatTheme_actionBarSize + * @see #AppCompatTheme_actionBarSplitStyle + * @see #AppCompatTheme_actionBarStyle + * @see #AppCompatTheme_actionBarTabBarStyle + * @see #AppCompatTheme_actionBarTabStyle + * @see #AppCompatTheme_actionBarTabTextStyle + * @see #AppCompatTheme_actionBarTheme + * @see #AppCompatTheme_actionBarWidgetTheme + * @see #AppCompatTheme_actionButtonStyle + * @see #AppCompatTheme_actionDropDownStyle + * @see #AppCompatTheme_actionMenuTextAppearance + * @see #AppCompatTheme_actionMenuTextColor + * @see #AppCompatTheme_actionModeBackground + * @see #AppCompatTheme_actionModeCloseButtonStyle + * @see #AppCompatTheme_actionModeCloseDrawable + * @see #AppCompatTheme_actionModeCopyDrawable + * @see #AppCompatTheme_actionModeCutDrawable + * @see #AppCompatTheme_actionModeFindDrawable + * @see #AppCompatTheme_actionModePasteDrawable + * @see #AppCompatTheme_actionModePopupWindowStyle + * @see #AppCompatTheme_actionModeSelectAllDrawable + * @see #AppCompatTheme_actionModeShareDrawable + * @see #AppCompatTheme_actionModeSplitBackground + * @see #AppCompatTheme_actionModeStyle + * @see #AppCompatTheme_actionModeWebSearchDrawable + * @see #AppCompatTheme_actionOverflowButtonStyle + * @see #AppCompatTheme_actionOverflowMenuStyle + * @see #AppCompatTheme_activityChooserViewStyle + * @see #AppCompatTheme_alertDialogButtonGroupStyle + * @see #AppCompatTheme_alertDialogCenterButtons + * @see #AppCompatTheme_alertDialogStyle + * @see #AppCompatTheme_alertDialogTheme + * @see #AppCompatTheme_autoCompleteTextViewStyle + * @see #AppCompatTheme_borderlessButtonStyle + * @see #AppCompatTheme_buttonBarButtonStyle + * @see #AppCompatTheme_buttonBarNegativeButtonStyle + * @see #AppCompatTheme_buttonBarNeutralButtonStyle + * @see #AppCompatTheme_buttonBarPositiveButtonStyle + * @see #AppCompatTheme_buttonBarStyle + * @see #AppCompatTheme_buttonStyle + * @see #AppCompatTheme_buttonStyleSmall + * @see #AppCompatTheme_checkboxStyle + * @see #AppCompatTheme_checkedTextViewStyle + * @see #AppCompatTheme_colorAccent + * @see #AppCompatTheme_colorBackgroundFloating + * @see #AppCompatTheme_colorButtonNormal + * @see #AppCompatTheme_colorControlActivated + * @see #AppCompatTheme_colorControlHighlight + * @see #AppCompatTheme_colorControlNormal + * @see #AppCompatTheme_colorPrimary + * @see #AppCompatTheme_colorPrimaryDark + * @see #AppCompatTheme_colorSwitchThumbNormal + * @see #AppCompatTheme_controlBackground + * @see #AppCompatTheme_dialogPreferredPadding + * @see #AppCompatTheme_dialogTheme + * @see #AppCompatTheme_dividerHorizontal + * @see #AppCompatTheme_dividerVertical + * @see #AppCompatTheme_dropDownListViewStyle + * @see #AppCompatTheme_dropdownListPreferredItemHeight + * @see #AppCompatTheme_editTextBackground + * @see #AppCompatTheme_editTextColor + * @see #AppCompatTheme_editTextStyle + * @see #AppCompatTheme_homeAsUpIndicator + * @see #AppCompatTheme_imageButtonStyle + * @see #AppCompatTheme_listChoiceBackgroundIndicator + * @see #AppCompatTheme_listDividerAlertDialog + * @see #AppCompatTheme_listMenuViewStyle + * @see #AppCompatTheme_listPopupWindowStyle + * @see #AppCompatTheme_listPreferredItemHeight + * @see #AppCompatTheme_listPreferredItemHeightLarge + * @see #AppCompatTheme_listPreferredItemHeightSmall + * @see #AppCompatTheme_listPreferredItemPaddingLeft + * @see #AppCompatTheme_listPreferredItemPaddingRight + * @see #AppCompatTheme_panelBackground + * @see #AppCompatTheme_panelMenuListTheme + * @see #AppCompatTheme_panelMenuListWidth + * @see #AppCompatTheme_popupMenuStyle + * @see #AppCompatTheme_popupWindowStyle + * @see #AppCompatTheme_radioButtonStyle + * @see #AppCompatTheme_ratingBarStyle + * @see #AppCompatTheme_ratingBarStyleIndicator + * @see #AppCompatTheme_ratingBarStyleSmall + * @see #AppCompatTheme_searchViewStyle + * @see #AppCompatTheme_seekBarStyle + * @see #AppCompatTheme_selectableItemBackground + * @see #AppCompatTheme_selectableItemBackgroundBorderless + * @see #AppCompatTheme_spinnerDropDownItemStyle + * @see #AppCompatTheme_spinnerStyle + * @see #AppCompatTheme_switchStyle + * @see #AppCompatTheme_textAppearanceLargePopupMenu + * @see #AppCompatTheme_textAppearanceListItem + * @see #AppCompatTheme_textAppearanceListItemSmall + * @see #AppCompatTheme_textAppearancePopupMenuHeader + * @see #AppCompatTheme_textAppearanceSearchResultSubtitle + * @see #AppCompatTheme_textAppearanceSearchResultTitle + * @see #AppCompatTheme_textAppearanceSmallPopupMenu + * @see #AppCompatTheme_textColorAlertDialogListItem + * @see #AppCompatTheme_textColorSearchUrl + * @see #AppCompatTheme_toolbarNavigationButtonStyle + * @see #AppCompatTheme_toolbarStyle + * @see #AppCompatTheme_windowActionBar + * @see #AppCompatTheme_windowActionBarOverlay + * @see #AppCompatTheme_windowActionModeOverlay + * @see #AppCompatTheme_windowFixedHeightMajor + * @see #AppCompatTheme_windowFixedHeightMinor + * @see #AppCompatTheme_windowFixedWidthMajor + * @see #AppCompatTheme_windowFixedWidthMinor + * @see #AppCompatTheme_windowMinWidthMajor + * @see #AppCompatTheme_windowMinWidthMinor + * @see #AppCompatTheme_windowNoTitle + */ + public static final int[] AppCompatTheme={ + 0x01010057, 0x010100ae, 0x7f020000, 0x7f020001, + 0x7f020002, 0x7f020003, 0x7f020004, 0x7f020005, + 0x7f020006, 0x7f020007, 0x7f020008, 0x7f020009, + 0x7f02000a, 0x7f02000b, 0x7f02000c, 0x7f02000e, + 0x7f02000f, 0x7f020010, 0x7f020011, 0x7f020012, + 0x7f020013, 0x7f020014, 0x7f020015, 0x7f020016, + 0x7f020017, 0x7f020018, 0x7f020019, 0x7f02001a, + 0x7f02001b, 0x7f02001c, 0x7f02001d, 0x7f02001e, + 0x7f020021, 0x7f020022, 0x7f020023, 0x7f020024, + 0x7f020025, 0x7f02002a, 0x7f020032, 0x7f020033, + 0x7f020034, 0x7f020035, 0x7f020036, 0x7f020037, + 0x7f02003a, 0x7f02003b, 0x7f02003e, 0x7f02003f, + 0x7f020045, 0x7f020046, 0x7f020047, 0x7f020048, + 0x7f020049, 0x7f02004a, 0x7f02004b, 0x7f02004c, + 0x7f02004d, 0x7f020055, 0x7f020058, 0x7f020059, + 0x7f02005c, 0x7f02005e, 0x7f020061, 0x7f020062, + 0x7f020063, 0x7f020064, 0x7f020065, 0x7f02006c, + 0x7f020070, 0x7f020076, 0x7f020077, 0x7f02007a, + 0x7f02007b, 0x7f02007c, 0x7f02007d, 0x7f02007e, + 0x7f02007f, 0x7f020080, 0x7f020090, 0x7f020091, + 0x7f020092, 0x7f020093, 0x7f020095, 0x7f02009c, + 0x7f02009d, 0x7f02009e, 0x7f02009f, 0x7f0200a2, + 0x7f0200a3, 0x7f0200a4, 0x7f0200a5, 0x7f0200ac, + 0x7f0200ad, 0x7f0200bb, 0x7f0200be, 0x7f0200bf, + 0x7f0200c0, 0x7f0200c1, 0x7f0200c2, 0x7f0200c3, + 0x7f0200c4, 0x7f0200c5, 0x7f0200c6, 0x7f0200da, + 0x7f0200db, 0x7f0200e0, 0x7f0200e1, 0x7f0200e2, + 0x7f0200e3, 0x7f0200e4, 0x7f0200e5, 0x7f0200e6, + 0x7f0200e7, 0x7f0200e8, 0x7f0200e9 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowIsFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:windowIsFloating + */ + public static final int AppCompatTheme_android_windowIsFloating=0; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int AppCompatTheme_android_windowAnimationStyle=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarDivider} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarDivider + */ + public static final int AppCompatTheme_actionBarDivider=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarItemBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarItemBackground + */ + public static final int AppCompatTheme_actionBarItemBackground=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarPopupTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarPopupTheme + */ + public static final int AppCompatTheme_actionBarPopupTheme=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarSize} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
wrap_content0
+ * + * @attr name com.xnote.activity:actionBarSize + */ + public static final int AppCompatTheme_actionBarSize=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarSplitStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarSplitStyle + */ + public static final int AppCompatTheme_actionBarSplitStyle=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarStyle + */ + public static final int AppCompatTheme_actionBarStyle=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarTabBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarTabBarStyle + */ + public static final int AppCompatTheme_actionBarTabBarStyle=8; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarTabStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarTabStyle + */ + public static final int AppCompatTheme_actionBarTabStyle=9; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarTabTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarTabTextStyle + */ + public static final int AppCompatTheme_actionBarTabTextStyle=10; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarTheme + */ + public static final int AppCompatTheme_actionBarTheme=11; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionBarWidgetTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionBarWidgetTheme + */ + public static final int AppCompatTheme_actionBarWidgetTheme=12; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionButtonStyle + */ + public static final int AppCompatTheme_actionButtonStyle=13; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionDropDownStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionDropDownStyle + */ + public static final int AppCompatTheme_actionDropDownStyle=14; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionMenuTextAppearance} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionMenuTextAppearance + */ + public static final int AppCompatTheme_actionMenuTextAppearance=15; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionMenuTextColor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:actionMenuTextColor + */ + public static final int AppCompatTheme_actionMenuTextColor=16; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeBackground + */ + public static final int AppCompatTheme_actionModeBackground=17; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeCloseButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeCloseButtonStyle + */ + public static final int AppCompatTheme_actionModeCloseButtonStyle=18; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeCloseDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeCloseDrawable + */ + public static final int AppCompatTheme_actionModeCloseDrawable=19; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeCopyDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeCopyDrawable + */ + public static final int AppCompatTheme_actionModeCopyDrawable=20; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeCutDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeCutDrawable + */ + public static final int AppCompatTheme_actionModeCutDrawable=21; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeFindDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeFindDrawable + */ + public static final int AppCompatTheme_actionModeFindDrawable=22; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModePasteDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModePasteDrawable + */ + public static final int AppCompatTheme_actionModePasteDrawable=23; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModePopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModePopupWindowStyle + */ + public static final int AppCompatTheme_actionModePopupWindowStyle=24; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeSelectAllDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeSelectAllDrawable + */ + public static final int AppCompatTheme_actionModeSelectAllDrawable=25; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeShareDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeShareDrawable + */ + public static final int AppCompatTheme_actionModeShareDrawable=26; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeSplitBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeSplitBackground + */ + public static final int AppCompatTheme_actionModeSplitBackground=27; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeStyle + */ + public static final int AppCompatTheme_actionModeStyle=28; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionModeWebSearchDrawable} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionModeWebSearchDrawable + */ + public static final int AppCompatTheme_actionModeWebSearchDrawable=29; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionOverflowButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionOverflowButtonStyle + */ + public static final int AppCompatTheme_actionOverflowButtonStyle=30; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionOverflowMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionOverflowMenuStyle + */ + public static final int AppCompatTheme_actionOverflowMenuStyle=31; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#activityChooserViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:activityChooserViewStyle + */ + public static final int AppCompatTheme_activityChooserViewStyle=32; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#alertDialogButtonGroupStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:alertDialogButtonGroupStyle + */ + public static final int AppCompatTheme_alertDialogButtonGroupStyle=33; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#alertDialogCenterButtons} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:alertDialogCenterButtons + */ + public static final int AppCompatTheme_alertDialogCenterButtons=34; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#alertDialogStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:alertDialogStyle + */ + public static final int AppCompatTheme_alertDialogStyle=35; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#alertDialogTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:alertDialogTheme + */ + public static final int AppCompatTheme_alertDialogTheme=36; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#autoCompleteTextViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:autoCompleteTextViewStyle + */ + public static final int AppCompatTheme_autoCompleteTextViewStyle=37; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#borderlessButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:borderlessButtonStyle + */ + public static final int AppCompatTheme_borderlessButtonStyle=38; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonBarButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonBarButtonStyle + */ + public static final int AppCompatTheme_buttonBarButtonStyle=39; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonBarNegativeButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonBarNegativeButtonStyle + */ + public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonBarNeutralButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonBarNeutralButtonStyle + */ + public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonBarPositiveButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonBarPositiveButtonStyle + */ + public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonBarStyle + */ + public static final int AppCompatTheme_buttonBarStyle=43; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonStyle + */ + public static final int AppCompatTheme_buttonStyle=44; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonStyleSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:buttonStyleSmall + */ + public static final int AppCompatTheme_buttonStyleSmall=45; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#checkboxStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:checkboxStyle + */ + public static final int AppCompatTheme_checkboxStyle=46; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#checkedTextViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:checkedTextViewStyle + */ + public static final int AppCompatTheme_checkedTextViewStyle=47; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorAccent} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorAccent + */ + public static final int AppCompatTheme_colorAccent=48; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorBackgroundFloating} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorBackgroundFloating + */ + public static final int AppCompatTheme_colorBackgroundFloating=49; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorButtonNormal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorButtonNormal + */ + public static final int AppCompatTheme_colorButtonNormal=50; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorControlActivated} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorControlActivated + */ + public static final int AppCompatTheme_colorControlActivated=51; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorControlHighlight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorControlHighlight + */ + public static final int AppCompatTheme_colorControlHighlight=52; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorControlNormal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorControlNormal + */ + public static final int AppCompatTheme_colorControlNormal=53; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorPrimary} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorPrimary + */ + public static final int AppCompatTheme_colorPrimary=54; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorPrimaryDark} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorPrimaryDark + */ + public static final int AppCompatTheme_colorPrimaryDark=55; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#colorSwitchThumbNormal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:colorSwitchThumbNormal + */ + public static final int AppCompatTheme_colorSwitchThumbNormal=56; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#controlBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:controlBackground + */ + public static final int AppCompatTheme_controlBackground=57; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dialogPreferredPadding} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:dialogPreferredPadding + */ + public static final int AppCompatTheme_dialogPreferredPadding=58; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dialogTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:dialogTheme + */ + public static final int AppCompatTheme_dialogTheme=59; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dividerHorizontal} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:dividerHorizontal + */ + public static final int AppCompatTheme_dividerHorizontal=60; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dividerVertical} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:dividerVertical + */ + public static final int AppCompatTheme_dividerVertical=61; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dropDownListViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:dropDownListViewStyle + */ + public static final int AppCompatTheme_dropDownListViewStyle=62; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dropdownListPreferredItemHeight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:dropdownListPreferredItemHeight + */ + public static final int AppCompatTheme_dropdownListPreferredItemHeight=63; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#editTextBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:editTextBackground + */ + public static final int AppCompatTheme_editTextBackground=64; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#editTextColor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:editTextColor + */ + public static final int AppCompatTheme_editTextColor=65; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#editTextStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:editTextStyle + */ + public static final int AppCompatTheme_editTextStyle=66; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#homeAsUpIndicator} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:homeAsUpIndicator + */ + public static final int AppCompatTheme_homeAsUpIndicator=67; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#imageButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:imageButtonStyle + */ + public static final int AppCompatTheme_imageButtonStyle=68; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listChoiceBackgroundIndicator} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:listChoiceBackgroundIndicator + */ + public static final int AppCompatTheme_listChoiceBackgroundIndicator=69; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listDividerAlertDialog} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:listDividerAlertDialog + */ + public static final int AppCompatTheme_listDividerAlertDialog=70; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listMenuViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:listMenuViewStyle + */ + public static final int AppCompatTheme_listMenuViewStyle=71; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listPopupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:listPopupWindowStyle + */ + public static final int AppCompatTheme_listPopupWindowStyle=72; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listPreferredItemHeight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:listPreferredItemHeight + */ + public static final int AppCompatTheme_listPreferredItemHeight=73; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listPreferredItemHeightLarge} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:listPreferredItemHeightLarge + */ + public static final int AppCompatTheme_listPreferredItemHeightLarge=74; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listPreferredItemHeightSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:listPreferredItemHeightSmall + */ + public static final int AppCompatTheme_listPreferredItemHeightSmall=75; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listPreferredItemPaddingLeft} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:listPreferredItemPaddingLeft + */ + public static final int AppCompatTheme_listPreferredItemPaddingLeft=76; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#listPreferredItemPaddingRight} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:listPreferredItemPaddingRight + */ + public static final int AppCompatTheme_listPreferredItemPaddingRight=77; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#panelBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:panelBackground + */ + public static final int AppCompatTheme_panelBackground=78; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#panelMenuListTheme} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:panelMenuListTheme + */ + public static final int AppCompatTheme_panelMenuListTheme=79; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#panelMenuListWidth} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:panelMenuListWidth + */ + public static final int AppCompatTheme_panelMenuListWidth=80; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#popupMenuStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:popupMenuStyle + */ + public static final int AppCompatTheme_popupMenuStyle=81; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#popupWindowStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:popupWindowStyle + */ + public static final int AppCompatTheme_popupWindowStyle=82; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#radioButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:radioButtonStyle + */ + public static final int AppCompatTheme_radioButtonStyle=83; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#ratingBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:ratingBarStyle + */ + public static final int AppCompatTheme_ratingBarStyle=84; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#ratingBarStyleIndicator} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:ratingBarStyleIndicator + */ + public static final int AppCompatTheme_ratingBarStyleIndicator=85; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#ratingBarStyleSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:ratingBarStyleSmall + */ + public static final int AppCompatTheme_ratingBarStyleSmall=86; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#searchViewStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:searchViewStyle + */ + public static final int AppCompatTheme_searchViewStyle=87; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#seekBarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:seekBarStyle + */ + public static final int AppCompatTheme_seekBarStyle=88; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#selectableItemBackground} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:selectableItemBackground + */ + public static final int AppCompatTheme_selectableItemBackground=89; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#selectableItemBackgroundBorderless} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:selectableItemBackgroundBorderless + */ + public static final int AppCompatTheme_selectableItemBackgroundBorderless=90; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#spinnerDropDownItemStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:spinnerDropDownItemStyle + */ + public static final int AppCompatTheme_spinnerDropDownItemStyle=91; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#spinnerStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:spinnerStyle + */ + public static final int AppCompatTheme_spinnerStyle=92; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#switchStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:switchStyle + */ + public static final int AppCompatTheme_switchStyle=93; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearanceLargePopupMenu} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearanceLargePopupMenu + */ + public static final int AppCompatTheme_textAppearanceLargePopupMenu=94; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearanceListItem} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearanceListItem + */ + public static final int AppCompatTheme_textAppearanceListItem=95; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearanceListItemSmall} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearanceListItemSmall + */ + public static final int AppCompatTheme_textAppearanceListItemSmall=96; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearancePopupMenuHeader} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearancePopupMenuHeader + */ + public static final int AppCompatTheme_textAppearancePopupMenuHeader=97; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearanceSearchResultSubtitle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearanceSearchResultSubtitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=98; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearanceSearchResultTitle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearanceSearchResultTitle + */ + public static final int AppCompatTheme_textAppearanceSearchResultTitle=99; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAppearanceSmallPopupMenu} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:textAppearanceSmallPopupMenu + */ + public static final int AppCompatTheme_textAppearanceSmallPopupMenu=100; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textColorAlertDialogListItem} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:textColorAlertDialogListItem + */ + public static final int AppCompatTheme_textColorAlertDialogListItem=101; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textColorSearchUrl} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:textColorSearchUrl + */ + public static final int AppCompatTheme_textColorSearchUrl=102; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#toolbarNavigationButtonStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:toolbarNavigationButtonStyle + */ + public static final int AppCompatTheme_toolbarNavigationButtonStyle=103; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#toolbarStyle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:toolbarStyle + */ + public static final int AppCompatTheme_toolbarStyle=104; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowActionBar} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:windowActionBar + */ + public static final int AppCompatTheme_windowActionBar=105; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowActionBarOverlay} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:windowActionBarOverlay + */ + public static final int AppCompatTheme_windowActionBarOverlay=106; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowActionModeOverlay} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:windowActionModeOverlay + */ + public static final int AppCompatTheme_windowActionModeOverlay=107; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowFixedHeightMajor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.xnote.activity:windowFixedHeightMajor + */ + public static final int AppCompatTheme_windowFixedHeightMajor=108; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowFixedHeightMinor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.xnote.activity:windowFixedHeightMinor + */ + public static final int AppCompatTheme_windowFixedHeightMinor=109; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowFixedWidthMajor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.xnote.activity:windowFixedWidthMajor + */ + public static final int AppCompatTheme_windowFixedWidthMajor=110; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowFixedWidthMinor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.xnote.activity:windowFixedWidthMinor + */ + public static final int AppCompatTheme_windowFixedWidthMinor=111; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowMinWidthMajor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.xnote.activity:windowMinWidthMajor + */ + public static final int AppCompatTheme_windowMinWidthMajor=112; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowMinWidthMinor} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

May be a fractional value, which is a floating point number appended with + * either % or %p, such as "14.5%". + * The % suffix always means a percentage of the base size; + * the optional %p suffix provides a size relative to some parent container. + * + * @attr name com.xnote.activity:windowMinWidthMinor + */ + public static final int AppCompatTheme_windowMinWidthMinor=113; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#windowNoTitle} + * attribute's value can be found in the {@link #AppCompatTheme} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:windowNoTitle + */ + public static final int AppCompatTheme_windowNoTitle=114; + /** + * Attributes that can be used with a ButtonBarLayout. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #ButtonBarLayout_allowStacking com.xnote.activity:allowStacking}
+ * @see #ButtonBarLayout_allowStacking + */ + public static final int[] ButtonBarLayout={ + 0x7f020026 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#allowStacking} + * attribute's value can be found in the {@link #ButtonBarLayout} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:allowStacking + */ + public static final int ButtonBarLayout_allowStacking=0; + /** + * Attributes that can be used with a Captcha. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Captcha_blockSize com.xnote.activity:blockSize}
{@link #Captcha_max_fail_count com.xnote.activity:max_fail_count}
{@link #Captcha_mode com.xnote.activity:mode}
{@link #Captcha_progressDrawable com.xnote.activity:progressDrawable}
{@link #Captcha_src com.xnote.activity:src}
{@link #Captcha_thumbDrawable com.xnote.activity:thumbDrawable}
+ * @see #Captcha_blockSize + * @see #Captcha_max_fail_count + * @see #Captcha_mode + * @see #Captcha_progressDrawable + * @see #Captcha_src + * @see #Captcha_thumbDrawable + */ + public static final int[] Captcha={ + 0x7f020031, 0x7f020084, 0x7f020086, 0x7f020099, + 0x7f0200af, 0x7f0200c9 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#blockSize} + * attribute's value can be found in the {@link #Captcha} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:blockSize + */ + public static final int Captcha_blockSize=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#max_fail_count} + * attribute's value can be found in the {@link #Captcha} array. + * + *

May be an integer value, such as "100". + * + * @attr name com.xnote.activity:max_fail_count + */ + public static final int Captcha_max_fail_count=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#mode} + * attribute's value can be found in the {@link #Captcha} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
mode_bar1
mode_nonbar2
+ * + * @attr name com.xnote.activity:mode + */ + public static final int Captcha_mode=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#progressDrawable} + * attribute's value can be found in the {@link #Captcha} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:progressDrawable + */ + public static final int Captcha_progressDrawable=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#src} + * attribute's value can be found in the {@link #Captcha} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:src + */ + public static final int Captcha_src=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#thumbDrawable} + * attribute's value can be found in the {@link #Captcha} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:thumbDrawable + */ + public static final int Captcha_thumbDrawable=5; + /** + * Attributes that can be used with a ColorStateListItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ColorStateListItem_android_color android:color}
{@link #ColorStateListItem_android_alpha android:alpha}
{@link #ColorStateListItem_alpha com.xnote.activity:alpha}
+ * @see #ColorStateListItem_android_color + * @see #ColorStateListItem_android_alpha + * @see #ColorStateListItem_alpha + */ + public static final int[] ColorStateListItem={ + 0x010101a5, 0x0101031f, 0x7f020027 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#color} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:color + */ + public static final int ColorStateListItem_android_color=0; + /** + *

This symbol is the offset where the {@link android.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:alpha + */ + public static final int ColorStateListItem_android_alpha=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#alpha} + * attribute's value can be found in the {@link #ColorStateListItem} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name com.xnote.activity:alpha + */ + public static final int ColorStateListItem_alpha=2; + /** + * Attributes that can be used with a CompoundButton. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #CompoundButton_android_button android:button}
{@link #CompoundButton_buttonTint com.xnote.activity:buttonTint}
{@link #CompoundButton_buttonTintMode com.xnote.activity:buttonTintMode}
+ * @see #CompoundButton_android_button + * @see #CompoundButton_buttonTint + * @see #CompoundButton_buttonTintMode + */ + public static final int[] CompoundButton={ + 0x01010107, 0x7f02003c, 0x7f02003d + }; + /** + *

This symbol is the offset where the {@link android.R.attr#button} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:button + */ + public static final int CompoundButton_android_button=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonTint} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:buttonTint + */ + public static final int CompoundButton_buttonTint=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonTintMode} + * attribute's value can be found in the {@link #CompoundButton} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name com.xnote.activity:buttonTintMode + */ + public static final int CompoundButton_buttonTintMode=2; + /** + * Attributes that can be used with a DrawerArrowToggle. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #DrawerArrowToggle_arrowHeadLength com.xnote.activity:arrowHeadLength}
{@link #DrawerArrowToggle_arrowShaftLength com.xnote.activity:arrowShaftLength}
{@link #DrawerArrowToggle_barLength com.xnote.activity:barLength}
{@link #DrawerArrowToggle_color com.xnote.activity:color}
{@link #DrawerArrowToggle_drawableSize com.xnote.activity:drawableSize}
{@link #DrawerArrowToggle_gapBetweenBars com.xnote.activity:gapBetweenBars}
{@link #DrawerArrowToggle_spinBars com.xnote.activity:spinBars}
{@link #DrawerArrowToggle_thickness com.xnote.activity:thickness}
+ * @see #DrawerArrowToggle_arrowHeadLength + * @see #DrawerArrowToggle_arrowShaftLength + * @see #DrawerArrowToggle_barLength + * @see #DrawerArrowToggle_color + * @see #DrawerArrowToggle_drawableSize + * @see #DrawerArrowToggle_gapBetweenBars + * @see #DrawerArrowToggle_spinBars + * @see #DrawerArrowToggle_thickness + */ + public static final int[] DrawerArrowToggle={ + 0x7f020028, 0x7f020029, 0x7f020030, 0x7f020044, + 0x7f02005f, 0x7f020068, 0x7f0200ab, 0x7f0200c8 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#arrowHeadLength} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:arrowHeadLength + */ + public static final int DrawerArrowToggle_arrowHeadLength=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#arrowShaftLength} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:arrowShaftLength + */ + public static final int DrawerArrowToggle_arrowShaftLength=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#barLength} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:barLength + */ + public static final int DrawerArrowToggle_barLength=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#color} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:color + */ + public static final int DrawerArrowToggle_color=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#drawableSize} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:drawableSize + */ + public static final int DrawerArrowToggle_drawableSize=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#gapBetweenBars} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:gapBetweenBars + */ + public static final int DrawerArrowToggle_gapBetweenBars=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#spinBars} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:spinBars + */ + public static final int DrawerArrowToggle_spinBars=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#thickness} + * attribute's value can be found in the {@link #DrawerArrowToggle} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:thickness + */ + public static final int DrawerArrowToggle_thickness=7; + /** + * Attributes that can be used with a LinearLayoutCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_android_gravity android:gravity}
{@link #LinearLayoutCompat_android_orientation android:orientation}
{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}
{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}
{@link #LinearLayoutCompat_android_weightSum android:weightSum}
{@link #LinearLayoutCompat_divider com.xnote.activity:divider}
{@link #LinearLayoutCompat_dividerPadding com.xnote.activity:dividerPadding}
{@link #LinearLayoutCompat_measureWithLargestChild com.xnote.activity:measureWithLargestChild}
{@link #LinearLayoutCompat_showDividers com.xnote.activity:showDividers}
+ * @see #LinearLayoutCompat_android_gravity + * @see #LinearLayoutCompat_android_orientation + * @see #LinearLayoutCompat_android_baselineAligned + * @see #LinearLayoutCompat_android_baselineAlignedChildIndex + * @see #LinearLayoutCompat_android_weightSum + * @see #LinearLayoutCompat_divider + * @see #LinearLayoutCompat_dividerPadding + * @see #LinearLayoutCompat_measureWithLargestChild + * @see #LinearLayoutCompat_showDividers + */ + public static final int[] LinearLayoutCompat={ + 0x010100af, 0x010100c4, 0x01010126, 0x01010127, + 0x01010128, 0x7f02005b, 0x7f02005d, 0x7f020085, + 0x7f0200a7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int LinearLayoutCompat_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#orientation} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
horizontal0
vertical1
+ * + * @attr name android:orientation + */ + public static final int LinearLayoutCompat_android_orientation=1; + /** + *

This symbol is the offset where the {@link android.R.attr#baselineAligned} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:baselineAligned + */ + public static final int LinearLayoutCompat_android_baselineAligned=2; + /** + *

This symbol is the offset where the {@link android.R.attr#baselineAlignedChildIndex} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:baselineAlignedChildIndex + */ + public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3; + /** + *

This symbol is the offset where the {@link android.R.attr#weightSum} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:weightSum + */ + public static final int LinearLayoutCompat_android_weightSum=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#divider} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:divider + */ + public static final int LinearLayoutCompat_divider=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#dividerPadding} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:dividerPadding + */ + public static final int LinearLayoutCompat_dividerPadding=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#measureWithLargestChild} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:measureWithLargestChild + */ + public static final int LinearLayoutCompat_measureWithLargestChild=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#showDividers} + * attribute's value can be found in the {@link #LinearLayoutCompat} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
beginning1
end4
middle2
none0
+ * + * @attr name com.xnote.activity:showDividers + */ + public static final int LinearLayoutCompat_showDividers=8; + /** + * Attributes that can be used with a LinearLayoutCompat_Layout. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}
{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}
{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}
{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}
+ * @see #LinearLayoutCompat_Layout_android_layout_gravity + * @see #LinearLayoutCompat_Layout_android_layout_width + * @see #LinearLayoutCompat_Layout_android_layout_height + * @see #LinearLayoutCompat_Layout_android_layout_weight + */ + public static final int[] LinearLayoutCompat_Layout={ + 0x010100b3, 0x010100f4, 0x010100f5, 0x01010181 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_gravity} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:layout_gravity + */ + public static final int LinearLayoutCompat_Layout_android_layout_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_width} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_width + */ + public static final int LinearLayoutCompat_Layout_android_layout_width=1; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_height} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:layout_height + */ + public static final int LinearLayoutCompat_Layout_android_layout_height=2; + /** + *

This symbol is the offset where the {@link android.R.attr#layout_weight} + * attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:layout_weight + */ + public static final int LinearLayoutCompat_Layout_android_layout_weight=3; + /** + * Attributes that can be used with a ListPopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}
{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}
+ * @see #ListPopupWindow_android_dropDownHorizontalOffset + * @see #ListPopupWindow_android_dropDownVerticalOffset + */ + public static final int[] ListPopupWindow={ + 0x010102ac, 0x010102ad + }; + /** + *

This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset} + * attribute's value can be found in the {@link #ListPopupWindow} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownHorizontalOffset + */ + public static final int ListPopupWindow_android_dropDownHorizontalOffset=0; + /** + *

This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset} + * attribute's value can be found in the {@link #ListPopupWindow} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:dropDownVerticalOffset + */ + public static final int ListPopupWindow_android_dropDownVerticalOffset=1; + /** + * Attributes that can be used with a MenuGroup. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuGroup_android_enabled android:enabled}
{@link #MenuGroup_android_id android:id}
{@link #MenuGroup_android_visible android:visible}
{@link #MenuGroup_android_menuCategory android:menuCategory}
{@link #MenuGroup_android_orderInCategory android:orderInCategory}
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}
+ * @see #MenuGroup_android_enabled + * @see #MenuGroup_android_id + * @see #MenuGroup_android_visible + * @see #MenuGroup_android_menuCategory + * @see #MenuGroup_android_orderInCategory + * @see #MenuGroup_android_checkableBehavior + */ + public static final int[] MenuGroup={ + 0x0101000e, 0x010100d0, 0x01010194, 0x010101de, + 0x010101df, 0x010101e0 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuGroup_android_enabled=0; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuGroup_android_id=1; + /** + *

This symbol is the offset where the {@link android.R.attr#visible} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuGroup_android_visible=2; + /** + *

This symbol is the offset where the {@link android.R.attr#menuCategory} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuGroup_android_menuCategory=3; + /** + *

This symbol is the offset where the {@link android.R.attr#orderInCategory} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuGroup_android_orderInCategory=4; + /** + *

This symbol is the offset where the {@link android.R.attr#checkableBehavior} + * attribute's value can be found in the {@link #MenuGroup} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
all1
none0
single2
+ * + * @attr name android:checkableBehavior + */ + public static final int MenuGroup_android_checkableBehavior=5; + /** + * Attributes that can be used with a MenuItem. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuItem_android_icon android:icon}
{@link #MenuItem_android_enabled android:enabled}
{@link #MenuItem_android_id android:id}
{@link #MenuItem_android_checked android:checked}
{@link #MenuItem_android_visible android:visible}
{@link #MenuItem_android_menuCategory android:menuCategory}
{@link #MenuItem_android_orderInCategory android:orderInCategory}
{@link #MenuItem_android_title android:title}
{@link #MenuItem_android_titleCondensed android:titleCondensed}
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}
{@link #MenuItem_android_numericShortcut android:numericShortcut}
{@link #MenuItem_android_checkable android:checkable}
{@link #MenuItem_android_onClick android:onClick}
{@link #MenuItem_actionLayout com.xnote.activity:actionLayout}
{@link #MenuItem_actionProviderClass com.xnote.activity:actionProviderClass}
{@link #MenuItem_actionViewClass com.xnote.activity:actionViewClass}
{@link #MenuItem_showAsAction com.xnote.activity:showAsAction}
+ * @see #MenuItem_android_icon + * @see #MenuItem_android_enabled + * @see #MenuItem_android_id + * @see #MenuItem_android_checked + * @see #MenuItem_android_visible + * @see #MenuItem_android_menuCategory + * @see #MenuItem_android_orderInCategory + * @see #MenuItem_android_title + * @see #MenuItem_android_titleCondensed + * @see #MenuItem_android_alphabeticShortcut + * @see #MenuItem_android_numericShortcut + * @see #MenuItem_android_checkable + * @see #MenuItem_android_onClick + * @see #MenuItem_actionLayout + * @see #MenuItem_actionProviderClass + * @see #MenuItem_actionViewClass + * @see #MenuItem_showAsAction + */ + public static final int[] MenuItem={ + 0x01010002, 0x0101000e, 0x010100d0, 0x01010106, + 0x01010194, 0x010101de, 0x010101df, 0x010101e1, + 0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5, + 0x0101026f, 0x7f02000d, 0x7f02001f, 0x7f020020, + 0x7f0200a6 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#icon} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:icon + */ + public static final int MenuItem_android_icon=0; + /** + *

This symbol is the offset where the {@link android.R.attr#enabled} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:enabled + */ + public static final int MenuItem_android_enabled=1; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int MenuItem_android_id=2; + /** + *

This symbol is the offset where the {@link android.R.attr#checked} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checked + */ + public static final int MenuItem_android_checked=3; + /** + *

This symbol is the offset where the {@link android.R.attr#visible} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:visible + */ + public static final int MenuItem_android_visible=4; + /** + *

This symbol is the offset where the {@link android.R.attr#menuCategory} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
alternative40000
container10000
secondary30000
system20000
+ * + * @attr name android:menuCategory + */ + public static final int MenuItem_android_menuCategory=5; + /** + *

This symbol is the offset where the {@link android.R.attr#orderInCategory} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be an integer value, such as "100". + * + * @attr name android:orderInCategory + */ + public static final int MenuItem_android_orderInCategory=6; + /** + *

This symbol is the offset where the {@link android.R.attr#title} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:title + */ + public static final int MenuItem_android_title=7; + /** + *

This symbol is the offset where the {@link android.R.attr#titleCondensed} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:titleCondensed + */ + public static final int MenuItem_android_titleCondensed=8; + /** + *

This symbol is the offset where the {@link android.R.attr#alphabeticShortcut} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:alphabeticShortcut + */ + public static final int MenuItem_android_alphabeticShortcut=9; + /** + *

This symbol is the offset where the {@link android.R.attr#numericShortcut} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:numericShortcut + */ + public static final int MenuItem_android_numericShortcut=10; + /** + *

This symbol is the offset where the {@link android.R.attr#checkable} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name android:checkable + */ + public static final int MenuItem_android_checkable=11; + /** + *

This symbol is the offset where the {@link android.R.attr#onClick} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:onClick + */ + public static final int MenuItem_android_onClick=12; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionLayout} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:actionLayout + */ + public static final int MenuItem_actionLayout=13; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionProviderClass} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:actionProviderClass + */ + public static final int MenuItem_actionProviderClass=14; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#actionViewClass} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:actionViewClass + */ + public static final int MenuItem_actionViewClass=15; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#showAsAction} + * attribute's value can be found in the {@link #MenuItem} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
always2
collapseActionView8
ifRoom1
never0
withText4
+ * + * @attr name com.xnote.activity:showAsAction + */ + public static final int MenuItem_showAsAction=16; + /** + * Attributes that can be used with a MenuView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}
{@link #MenuView_android_horizontalDivider android:horizontalDivider}
{@link #MenuView_android_verticalDivider android:verticalDivider}
{@link #MenuView_android_headerBackground android:headerBackground}
{@link #MenuView_android_itemBackground android:itemBackground}
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}
{@link #MenuView_preserveIconSpacing com.xnote.activity:preserveIconSpacing}
{@link #MenuView_subMenuArrow com.xnote.activity:subMenuArrow}
+ * @see #MenuView_android_windowAnimationStyle + * @see #MenuView_android_itemTextAppearance + * @see #MenuView_android_horizontalDivider + * @see #MenuView_android_verticalDivider + * @see #MenuView_android_headerBackground + * @see #MenuView_android_itemBackground + * @see #MenuView_android_itemIconDisabledAlpha + * @see #MenuView_preserveIconSpacing + * @see #MenuView_subMenuArrow + */ + public static final int[] MenuView={ + 0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e, + 0x0101012f, 0x01010130, 0x01010131, 0x7f020096, + 0x7f0200b2 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#windowAnimationStyle} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:windowAnimationStyle + */ + public static final int MenuView_android_windowAnimationStyle=0; + /** + *

This symbol is the offset where the {@link android.R.attr#itemTextAppearance} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:itemTextAppearance + */ + public static final int MenuView_android_itemTextAppearance=1; + /** + *

This symbol is the offset where the {@link android.R.attr#horizontalDivider} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:horizontalDivider + */ + public static final int MenuView_android_horizontalDivider=2; + /** + *

This symbol is the offset where the {@link android.R.attr#verticalDivider} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:verticalDivider + */ + public static final int MenuView_android_verticalDivider=3; + /** + *

This symbol is the offset where the {@link android.R.attr#headerBackground} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:headerBackground + */ + public static final int MenuView_android_headerBackground=4; + /** + *

This symbol is the offset where the {@link android.R.attr#itemBackground} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:itemBackground + */ + public static final int MenuView_android_itemBackground=5; + /** + *

This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:itemIconDisabledAlpha + */ + public static final int MenuView_android_itemIconDisabledAlpha=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#preserveIconSpacing} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:preserveIconSpacing + */ + public static final int MenuView_preserveIconSpacing=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subMenuArrow} + * attribute's value can be found in the {@link #MenuView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:subMenuArrow + */ + public static final int MenuView_subMenuArrow=8; + /** + * Attributes that can be used with a PopupWindow. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #PopupWindow_android_popupBackground android:popupBackground}
{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}
{@link #PopupWindow_overlapAnchor com.xnote.activity:overlapAnchor}
+ * @see #PopupWindow_android_popupBackground + * @see #PopupWindow_android_popupAnimationStyle + * @see #PopupWindow_overlapAnchor + */ + public static final int[] PopupWindow={ + 0x01010176, 0x010102c9, 0x7f02008b + }; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int PopupWindow_android_popupBackground=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupAnimationStyle} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:popupAnimationStyle + */ + public static final int PopupWindow_android_popupAnimationStyle=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#overlapAnchor} + * attribute's value can be found in the {@link #PopupWindow} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:overlapAnchor + */ + public static final int PopupWindow_overlapAnchor=2; + /** + * Attributes that can be used with a PopupWindowBackgroundState. + *

Includes the following attributes:

+ * + * + * + * + * + *
AttributeDescription
{@link #PopupWindowBackgroundState_state_above_anchor com.xnote.activity:state_above_anchor}
+ * @see #PopupWindowBackgroundState_state_above_anchor + */ + public static final int[] PopupWindowBackgroundState={ + 0x7f0200b1 + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#state_above_anchor} + * attribute's value can be found in the {@link #PopupWindowBackgroundState} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:state_above_anchor + */ + public static final int PopupWindowBackgroundState_state_above_anchor=0; + /** + * Attributes that can be used with a RecycleListView. + *

Includes the following attributes:

+ * + * + * + * + * + * + *
AttributeDescription
{@link #RecycleListView_paddingBottomNoButtons com.xnote.activity:paddingBottomNoButtons}
{@link #RecycleListView_paddingTopNoTitle com.xnote.activity:paddingTopNoTitle}
+ * @see #RecycleListView_paddingBottomNoButtons + * @see #RecycleListView_paddingTopNoTitle + */ + public static final int[] RecycleListView={ + 0x7f02008c, 0x7f02008f + }; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#paddingBottomNoButtons} + * attribute's value can be found in the {@link #RecycleListView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:paddingBottomNoButtons + */ + public static final int RecycleListView_paddingBottomNoButtons=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#paddingTopNoTitle} + * attribute's value can be found in the {@link #RecycleListView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:paddingTopNoTitle + */ + public static final int RecycleListView_paddingTopNoTitle=1; + /** + * Attributes that can be used with a SearchView. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SearchView_android_focusable android:focusable}
{@link #SearchView_android_maxWidth android:maxWidth}
{@link #SearchView_android_inputType android:inputType}
{@link #SearchView_android_imeOptions android:imeOptions}
{@link #SearchView_closeIcon com.xnote.activity:closeIcon}
{@link #SearchView_commitIcon com.xnote.activity:commitIcon}
{@link #SearchView_defaultQueryHint com.xnote.activity:defaultQueryHint}
{@link #SearchView_goIcon com.xnote.activity:goIcon}
{@link #SearchView_iconifiedByDefault com.xnote.activity:iconifiedByDefault}
{@link #SearchView_layout com.xnote.activity:layout}
{@link #SearchView_queryBackground com.xnote.activity:queryBackground}
{@link #SearchView_queryHint com.xnote.activity:queryHint}
{@link #SearchView_searchHintIcon com.xnote.activity:searchHintIcon}
{@link #SearchView_searchIcon com.xnote.activity:searchIcon}
{@link #SearchView_submitBackground com.xnote.activity:submitBackground}
{@link #SearchView_suggestionRowLayout com.xnote.activity:suggestionRowLayout}
{@link #SearchView_voiceIcon com.xnote.activity:voiceIcon}
+ * @see #SearchView_android_focusable + * @see #SearchView_android_maxWidth + * @see #SearchView_android_inputType + * @see #SearchView_android_imeOptions + * @see #SearchView_closeIcon + * @see #SearchView_commitIcon + * @see #SearchView_defaultQueryHint + * @see #SearchView_goIcon + * @see #SearchView_iconifiedByDefault + * @see #SearchView_layout + * @see #SearchView_queryBackground + * @see #SearchView_queryHint + * @see #SearchView_searchHintIcon + * @see #SearchView_searchIcon + * @see #SearchView_submitBackground + * @see #SearchView_suggestionRowLayout + * @see #SearchView_voiceIcon + */ + public static final int[] SearchView={ + 0x010100da, 0x0101011f, 0x01010220, 0x01010264, + 0x7f020040, 0x7f02004e, 0x7f020057, 0x7f020069, + 0x7f02006f, 0x7f020075, 0x7f02009a, 0x7f02009b, + 0x7f0200a0, 0x7f0200a1, 0x7f0200b3, 0x7f0200b8, + 0x7f0200df + }; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int SearchView_android_focusable=0; + /** + *

This symbol is the offset where the {@link android.R.attr#maxWidth} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:maxWidth + */ + public static final int SearchView_android_maxWidth=1; + /** + *

This symbol is the offset where the {@link android.R.attr#inputType} + * attribute's value can be found in the {@link #SearchView} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
date14
datetime4
none0
number2
numberDecimal2002
numberPassword12
numberSigned1002
phone3
text1
textAutoComplete10001
textAutoCorrect8001
textCapCharacters1001
textCapSentences4001
textCapWords2001
textEmailAddress21
textEmailSubject31
textFilterb1
textImeMultiLine40001
textLongMessage51
textMultiLine20001
textNoSuggestions80001
textPassword81
textPersonName61
textPhoneticc1
textPostalAddress71
textShortMessage41
textUri11
textVisiblePassword91
textWebEditTexta1
textWebEmailAddressd1
textWebPassworde1
time24
+ * + * @attr name android:inputType + */ + public static final int SearchView_android_inputType=2; + /** + *

This symbol is the offset where the {@link android.R.attr#imeOptions} + * attribute's value can be found in the {@link #SearchView} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
actionDone6
actionGo2
actionNext5
actionNone1
actionPrevious7
actionSearch3
actionSend4
actionUnspecified0
flagForceAscii80000000
flagNavigateNext8000000
flagNavigatePrevious4000000
flagNoAccessoryAction20000000
flagNoEnterAction40000000
flagNoExtractUi10000000
flagNoFullscreen2000000
flagNoPersonalizedLearning1000000
normal0
+ * + * @attr name android:imeOptions + */ + public static final int SearchView_android_imeOptions=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#closeIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:closeIcon + */ + public static final int SearchView_closeIcon=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#commitIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:commitIcon + */ + public static final int SearchView_commitIcon=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#defaultQueryHint} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:defaultQueryHint + */ + public static final int SearchView_defaultQueryHint=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#goIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:goIcon + */ + public static final int SearchView_goIcon=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#iconifiedByDefault} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:iconifiedByDefault + */ + public static final int SearchView_iconifiedByDefault=8; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#layout} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:layout + */ + public static final int SearchView_layout=9; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#queryBackground} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:queryBackground + */ + public static final int SearchView_queryBackground=10; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#queryHint} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:queryHint + */ + public static final int SearchView_queryHint=11; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#searchHintIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:searchHintIcon + */ + public static final int SearchView_searchHintIcon=12; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#searchIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:searchIcon + */ + public static final int SearchView_searchIcon=13; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#submitBackground} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:submitBackground + */ + public static final int SearchView_submitBackground=14; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#suggestionRowLayout} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:suggestionRowLayout + */ + public static final int SearchView_suggestionRowLayout=15; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#voiceIcon} + * attribute's value can be found in the {@link #SearchView} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:voiceIcon + */ + public static final int SearchView_voiceIcon=16; + /** + * Attributes that can be used with a Spinner. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Spinner_android_entries android:entries}
{@link #Spinner_android_popupBackground android:popupBackground}
{@link #Spinner_android_prompt android:prompt}
{@link #Spinner_android_dropDownWidth android:dropDownWidth}
{@link #Spinner_popupTheme com.xnote.activity:popupTheme}
+ * @see #Spinner_android_entries + * @see #Spinner_android_popupBackground + * @see #Spinner_android_prompt + * @see #Spinner_android_dropDownWidth + * @see #Spinner_popupTheme + */ + public static final int[] Spinner={ + 0x010100b2, 0x01010176, 0x0101017b, 0x01010262, + 0x7f020094 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#entries} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:entries + */ + public static final int Spinner_android_entries=0; + /** + *

This symbol is the offset where the {@link android.R.attr#popupBackground} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:popupBackground + */ + public static final int Spinner_android_popupBackground=1; + /** + *

This symbol is the offset where the {@link android.R.attr#prompt} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:prompt + */ + public static final int Spinner_android_prompt=2; + /** + *

This symbol is the offset where the {@link android.R.attr#dropDownWidth} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
fill_parentffffffff
match_parentffffffff
wrap_contentfffffffe
+ * + * @attr name android:dropDownWidth + */ + public static final int Spinner_android_dropDownWidth=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#popupTheme} + * attribute's value can be found in the {@link #Spinner} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:popupTheme + */ + public static final int Spinner_popupTheme=4; + /** + * Attributes that can be used with a SwitchCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #SwitchCompat_android_textOn android:textOn}
{@link #SwitchCompat_android_textOff android:textOff}
{@link #SwitchCompat_android_thumb android:thumb}
{@link #SwitchCompat_showText com.xnote.activity:showText}
{@link #SwitchCompat_splitTrack com.xnote.activity:splitTrack}
{@link #SwitchCompat_switchMinWidth com.xnote.activity:switchMinWidth}
{@link #SwitchCompat_switchPadding com.xnote.activity:switchPadding}
{@link #SwitchCompat_switchTextAppearance com.xnote.activity:switchTextAppearance}
{@link #SwitchCompat_thumbTextPadding com.xnote.activity:thumbTextPadding}
{@link #SwitchCompat_thumbTint com.xnote.activity:thumbTint}
{@link #SwitchCompat_thumbTintMode com.xnote.activity:thumbTintMode}
{@link #SwitchCompat_track com.xnote.activity:track}
{@link #SwitchCompat_trackTint com.xnote.activity:trackTint}
{@link #SwitchCompat_trackTintMode com.xnote.activity:trackTintMode}
+ * @see #SwitchCompat_android_textOn + * @see #SwitchCompat_android_textOff + * @see #SwitchCompat_android_thumb + * @see #SwitchCompat_showText + * @see #SwitchCompat_splitTrack + * @see #SwitchCompat_switchMinWidth + * @see #SwitchCompat_switchPadding + * @see #SwitchCompat_switchTextAppearance + * @see #SwitchCompat_thumbTextPadding + * @see #SwitchCompat_thumbTint + * @see #SwitchCompat_thumbTintMode + * @see #SwitchCompat_track + * @see #SwitchCompat_trackTint + * @see #SwitchCompat_trackTintMode + */ + public static final int[] SwitchCompat={ + 0x01010124, 0x01010125, 0x01010142, 0x7f0200a8, + 0x7f0200ae, 0x7f0200b9, 0x7f0200ba, 0x7f0200bc, + 0x7f0200ca, 0x7f0200cb, 0x7f0200cc, 0x7f0200dc, + 0x7f0200dd, 0x7f0200de + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textOn} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOn + */ + public static final int SwitchCompat_android_textOn=0; + /** + *

This symbol is the offset where the {@link android.R.attr#textOff} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name android:textOff + */ + public static final int SwitchCompat_android_textOff=1; + /** + *

This symbol is the offset where the {@link android.R.attr#thumb} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:thumb + */ + public static final int SwitchCompat_android_thumb=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#showText} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:showText + */ + public static final int SwitchCompat_showText=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#splitTrack} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:splitTrack + */ + public static final int SwitchCompat_splitTrack=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#switchMinWidth} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:switchMinWidth + */ + public static final int SwitchCompat_switchMinWidth=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#switchPadding} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:switchPadding + */ + public static final int SwitchCompat_switchPadding=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#switchTextAppearance} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:switchTextAppearance + */ + public static final int SwitchCompat_switchTextAppearance=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#thumbTextPadding} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:thumbTextPadding + */ + public static final int SwitchCompat_thumbTextPadding=8; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#thumbTint} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:thumbTint + */ + public static final int SwitchCompat_thumbTint=9; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#thumbTintMode} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name com.xnote.activity:thumbTintMode + */ + public static final int SwitchCompat_thumbTintMode=10; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#track} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:track + */ + public static final int SwitchCompat_track=11; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#trackTint} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:trackTint + */ + public static final int SwitchCompat_trackTint=12; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#trackTintMode} + * attribute's value can be found in the {@link #SwitchCompat} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
add10
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name com.xnote.activity:trackTintMode + */ + public static final int SwitchCompat_trackTintMode=13; + /** + * Attributes that can be used with a TextAppearance. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_shadowColor android:shadowColor}
{@link #TextAppearance_android_shadowDx android:shadowDx}
{@link #TextAppearance_android_shadowDy android:shadowDy}
{@link #TextAppearance_android_shadowRadius android:shadowRadius}
{@link #TextAppearance_textAllCaps com.xnote.activity:textAllCaps}
+ * @see #TextAppearance_android_textSize + * @see #TextAppearance_android_typeface + * @see #TextAppearance_android_textStyle + * @see #TextAppearance_android_textColor + * @see #TextAppearance_android_textColorHint + * @see #TextAppearance_android_shadowColor + * @see #TextAppearance_android_shadowDx + * @see #TextAppearance_android_shadowDy + * @see #TextAppearance_android_shadowRadius + * @see #TextAppearance_textAllCaps + */ + public static final int[] TextAppearance={ + 0x01010095, 0x01010096, 0x01010097, 0x01010098, + 0x0101009a, 0x01010161, 0x01010162, 0x01010163, + 0x01010164, 0x7f0200bd + }; + /** + *

This symbol is the offset where the {@link android.R.attr#textSize} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:textSize + */ + public static final int TextAppearance_android_textSize=0; + /** + *

This symbol is the offset where the {@link android.R.attr#typeface} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
monospace3
normal0
sans1
serif2
+ * + * @attr name android:typeface + */ + public static final int TextAppearance_android_typeface=1; + /** + *

This symbol is the offset where the {@link android.R.attr#textStyle} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + *
ConstantValueDescription
bold1
italic2
normal0
+ * + * @attr name android:textStyle + */ + public static final int TextAppearance_android_textStyle=2; + /** + *

This symbol is the offset where the {@link android.R.attr#textColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColor + */ + public static final int TextAppearance_android_textColor=3; + /** + *

This symbol is the offset where the {@link android.R.attr#textColorHint} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:textColorHint + */ + public static final int TextAppearance_android_textColorHint=4; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowColor} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:shadowColor + */ + public static final int TextAppearance_android_shadowColor=5; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDx} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDx + */ + public static final int TextAppearance_android_shadowDx=6; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowDy} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowDy + */ + public static final int TextAppearance_android_shadowDy=7; + /** + *

This symbol is the offset where the {@link android.R.attr#shadowRadius} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a floating point value, such as "1.2". + * + * @attr name android:shadowRadius + */ + public static final int TextAppearance_android_shadowRadius=8; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#textAllCaps} + * attribute's value can be found in the {@link #TextAppearance} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a boolean value, such as "true" or + * "false". + * + * @attr name com.xnote.activity:textAllCaps + */ + public static final int TextAppearance_textAllCaps=9; + /** + * Attributes that can be used with a Toolbar. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #Toolbar_android_gravity android:gravity}
{@link #Toolbar_android_minHeight android:minHeight}
{@link #Toolbar_buttonGravity com.xnote.activity:buttonGravity}
{@link #Toolbar_collapseContentDescription com.xnote.activity:collapseContentDescription}
{@link #Toolbar_collapseIcon com.xnote.activity:collapseIcon}
{@link #Toolbar_contentInsetEnd com.xnote.activity:contentInsetEnd}
{@link #Toolbar_contentInsetEndWithActions com.xnote.activity:contentInsetEndWithActions}
{@link #Toolbar_contentInsetLeft com.xnote.activity:contentInsetLeft}
{@link #Toolbar_contentInsetRight com.xnote.activity:contentInsetRight}
{@link #Toolbar_contentInsetStart com.xnote.activity:contentInsetStart}
{@link #Toolbar_contentInsetStartWithNavigation com.xnote.activity:contentInsetStartWithNavigation}
{@link #Toolbar_logo com.xnote.activity:logo}
{@link #Toolbar_logoDescription com.xnote.activity:logoDescription}
{@link #Toolbar_maxButtonHeight com.xnote.activity:maxButtonHeight}
{@link #Toolbar_navigationContentDescription com.xnote.activity:navigationContentDescription}
{@link #Toolbar_navigationIcon com.xnote.activity:navigationIcon}
{@link #Toolbar_popupTheme com.xnote.activity:popupTheme}
{@link #Toolbar_subtitle com.xnote.activity:subtitle}
{@link #Toolbar_subtitleTextAppearance com.xnote.activity:subtitleTextAppearance}
{@link #Toolbar_subtitleTextColor com.xnote.activity:subtitleTextColor}
{@link #Toolbar_title com.xnote.activity:title}
{@link #Toolbar_titleMargin com.xnote.activity:titleMargin}
{@link #Toolbar_titleMarginBottom com.xnote.activity:titleMarginBottom}
{@link #Toolbar_titleMarginEnd com.xnote.activity:titleMarginEnd}
{@link #Toolbar_titleMarginStart com.xnote.activity:titleMarginStart}
{@link #Toolbar_titleMarginTop com.xnote.activity:titleMarginTop}
{@link #Toolbar_titleMargins com.xnote.activity:titleMargins}
{@link #Toolbar_titleTextAppearance com.xnote.activity:titleTextAppearance}
{@link #Toolbar_titleTextColor com.xnote.activity:titleTextColor}
+ * @see #Toolbar_android_gravity + * @see #Toolbar_android_minHeight + * @see #Toolbar_buttonGravity + * @see #Toolbar_collapseContentDescription + * @see #Toolbar_collapseIcon + * @see #Toolbar_contentInsetEnd + * @see #Toolbar_contentInsetEndWithActions + * @see #Toolbar_contentInsetLeft + * @see #Toolbar_contentInsetRight + * @see #Toolbar_contentInsetStart + * @see #Toolbar_contentInsetStartWithNavigation + * @see #Toolbar_logo + * @see #Toolbar_logoDescription + * @see #Toolbar_maxButtonHeight + * @see #Toolbar_navigationContentDescription + * @see #Toolbar_navigationIcon + * @see #Toolbar_popupTheme + * @see #Toolbar_subtitle + * @see #Toolbar_subtitleTextAppearance + * @see #Toolbar_subtitleTextColor + * @see #Toolbar_title + * @see #Toolbar_titleMargin + * @see #Toolbar_titleMarginBottom + * @see #Toolbar_titleMarginEnd + * @see #Toolbar_titleMarginStart + * @see #Toolbar_titleMarginTop + * @see #Toolbar_titleMargins + * @see #Toolbar_titleTextAppearance + * @see #Toolbar_titleTextColor + */ + public static final int[] Toolbar={ + 0x010100af, 0x01010140, 0x7f020038, 0x7f020042, + 0x7f020043, 0x7f02004f, 0x7f020050, 0x7f020051, + 0x7f020052, 0x7f020053, 0x7f020054, 0x7f020081, + 0x7f020082, 0x7f020083, 0x7f020088, 0x7f020089, + 0x7f020094, 0x7f0200b4, 0x7f0200b5, 0x7f0200b6, + 0x7f0200d0, 0x7f0200d1, 0x7f0200d2, 0x7f0200d3, + 0x7f0200d4, 0x7f0200d5, 0x7f0200d6, 0x7f0200d7, + 0x7f0200d8 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#gravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
center11
center_horizontal1
center_vertical10
clip_horizontal8
clip_vertical80
end800005
fill77
fill_horizontal7
fill_vertical70
left3
right5
start800003
top30
+ * + * @attr name android:gravity + */ + public static final int Toolbar_android_gravity=0; + /** + *

This symbol is the offset where the {@link android.R.attr#minHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name android:minHeight + */ + public static final int Toolbar_android_minHeight=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#buttonGravity} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

Must be one or more (separated by '|') of the following constant values.

+ * + * + * + * + * + * + * + *
ConstantValueDescription
bottom50
top30
+ * + * @attr name com.xnote.activity:buttonGravity + */ + public static final int Toolbar_buttonGravity=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#collapseContentDescription} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:collapseContentDescription + */ + public static final int Toolbar_collapseContentDescription=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#collapseIcon} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:collapseIcon + */ + public static final int Toolbar_collapseIcon=4; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetEnd} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetEnd + */ + public static final int Toolbar_contentInsetEnd=5; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetEndWithActions} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetEndWithActions + */ + public static final int Toolbar_contentInsetEndWithActions=6; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetLeft} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetLeft + */ + public static final int Toolbar_contentInsetLeft=7; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetRight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetRight + */ + public static final int Toolbar_contentInsetRight=8; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetStart} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetStart + */ + public static final int Toolbar_contentInsetStart=9; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#contentInsetStartWithNavigation} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:contentInsetStartWithNavigation + */ + public static final int Toolbar_contentInsetStartWithNavigation=10; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#logo} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:logo + */ + public static final int Toolbar_logo=11; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#logoDescription} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:logoDescription + */ + public static final int Toolbar_logoDescription=12; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#maxButtonHeight} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:maxButtonHeight + */ + public static final int Toolbar_maxButtonHeight=13; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#navigationContentDescription} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:navigationContentDescription + */ + public static final int Toolbar_navigationContentDescription=14; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#navigationIcon} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:navigationIcon + */ + public static final int Toolbar_navigationIcon=15; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#popupTheme} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:popupTheme + */ + public static final int Toolbar_popupTheme=16; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subtitle} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:subtitle + */ + public static final int Toolbar_subtitle=17; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subtitleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:subtitleTextAppearance + */ + public static final int Toolbar_subtitleTextAppearance=18; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#subtitleTextColor} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:subtitleTextColor + */ + public static final int Toolbar_subtitleTextColor=19; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#title} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a string value, using '\\;' to escape characters such as + * '\\n' or '\\uxxxx' for a unicode character; + * + * @attr name com.xnote.activity:title + */ + public static final int Toolbar_title=20; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleMargin} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:titleMargin + */ + public static final int Toolbar_titleMargin=21; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleMarginBottom} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:titleMarginBottom + */ + public static final int Toolbar_titleMarginBottom=22; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleMarginEnd} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:titleMarginEnd + */ + public static final int Toolbar_titleMarginEnd=23; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleMarginStart} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:titleMarginStart + */ + public static final int Toolbar_titleMarginStart=24; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleMarginTop} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:titleMarginTop + */ + public static final int Toolbar_titleMarginTop=25; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleMargins} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:titleMargins + */ + public static final int Toolbar_titleMargins=26; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleTextAppearance} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:titleTextAppearance + */ + public static final int Toolbar_titleTextAppearance=27; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#titleTextColor} + * attribute's value can be found in the {@link #Toolbar} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:titleTextColor + */ + public static final int Toolbar_titleTextColor=28; + /** + * Attributes that can be used with a View. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + * + * + *
AttributeDescription
{@link #View_android_theme android:theme}
{@link #View_android_focusable android:focusable}
{@link #View_paddingEnd com.xnote.activity:paddingEnd}
{@link #View_paddingStart com.xnote.activity:paddingStart}
{@link #View_theme com.xnote.activity:theme}
+ * @see #View_android_theme + * @see #View_android_focusable + * @see #View_paddingEnd + * @see #View_paddingStart + * @see #View_theme + */ + public static final int[] View={ + 0x01010000, 0x010100da, 0x7f02008d, 0x7f02008e, + 0x7f0200c7 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#theme} + * attribute's value can be found in the {@link #View} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:theme + */ + public static final int View_android_theme=0; + /** + *

This symbol is the offset where the {@link android.R.attr#focusable} + * attribute's value can be found in the {@link #View} array. + * + *

May be a boolean value, such as "true" or + * "false". + *

Must be one of the following constant values.

+ * + * + * + * + * + * + *
ConstantValueDescription
auto10
+ * + * @attr name android:focusable + */ + public static final int View_android_focusable=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#paddingEnd} + * attribute's value can be found in the {@link #View} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:paddingEnd + */ + public static final int View_paddingEnd=2; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#paddingStart} + * attribute's value can be found in the {@link #View} array. + * + *

May be a dimension value, which is a floating point number appended with a + * unit such as "14.5sp". + * Available units are: px (pixels), dp (density-independent pixels), + * sp (scaled pixels based on preferred font size), in (inches), and + * mm (millimeters). + * + * @attr name com.xnote.activity:paddingStart + */ + public static final int View_paddingStart=3; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#theme} + * attribute's value can be found in the {@link #View} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name com.xnote.activity:theme + */ + public static final int View_theme=4; + /** + * Attributes that can be used with a ViewBackgroundHelper. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewBackgroundHelper_android_background android:background}
{@link #ViewBackgroundHelper_backgroundTint com.xnote.activity:backgroundTint}
{@link #ViewBackgroundHelper_backgroundTintMode com.xnote.activity:backgroundTintMode}
+ * @see #ViewBackgroundHelper_android_background + * @see #ViewBackgroundHelper_backgroundTint + * @see #ViewBackgroundHelper_backgroundTintMode + */ + public static final int[] ViewBackgroundHelper={ + 0x010100d4, 0x7f02002e, 0x7f02002f + }; + /** + *

This symbol is the offset where the {@link android.R.attr#background} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name android:background + */ + public static final int ViewBackgroundHelper_android_background=0; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#backgroundTint} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

May be a color value, in the form of "#rgb", + * "#argb", "#rrggbb", or + * "#aarrggbb". + * + * @attr name com.xnote.activity:backgroundTint + */ + public static final int ViewBackgroundHelper_backgroundTint=1; + /** + *

This symbol is the offset where the {@link com.xnote.activity.R.attr#backgroundTintMode} + * attribute's value can be found in the {@link #ViewBackgroundHelper} array. + * + *

Must be one of the following constant values.

+ * + * + * + * + * + * + * + * + * + * + *
ConstantValueDescription
multiplye
screenf
src_atop9
src_in5
src_over3
+ * + * @attr name com.xnote.activity:backgroundTintMode + */ + public static final int ViewBackgroundHelper_backgroundTintMode=2; + /** + * Attributes that can be used with a ViewStubCompat. + *

Includes the following attributes:

+ * + * + * + * + * + * + * + *
AttributeDescription
{@link #ViewStubCompat_android_id android:id}
{@link #ViewStubCompat_android_layout android:layout}
{@link #ViewStubCompat_android_inflatedId android:inflatedId}
+ * @see #ViewStubCompat_android_id + * @see #ViewStubCompat_android_layout + * @see #ViewStubCompat_android_inflatedId + */ + public static final int[] ViewStubCompat={ + 0x010100d0, 0x010100f2, 0x010100f3 + }; + /** + *

This symbol is the offset where the {@link android.R.attr#id} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:id + */ + public static final int ViewStubCompat_android_id=0; + /** + *

This symbol is the offset where the {@link android.R.attr#layout} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:layout + */ + public static final int ViewStubCompat_android_layout=1; + /** + *

This symbol is the offset where the {@link android.R.attr#inflatedId} + * attribute's value can be found in the {@link #ViewStubCompat} array. + * + *

May be a reference to another resource, in the form + * "@[+][package:]type/name" or a theme + * attribute in the form + * "?[package:]type/name". + * + * @attr name android:inflatedId + */ + public static final int ViewStubCompat_android_inflatedId=2; + } + public static final class xml { + public static final int widget_2x2_layout_info=0x7f0f0000; + public static final int widget_4x4_layout_info=0x7f0f0001; + } +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/generated/source/buildConfig/androidTest/debug/com/xnote/activity/test/BuildConfig.java b/src/源代码/XNote/app/build/generated/source/buildConfig/androidTest/debug/com/xnote/activity/test/BuildConfig.java new file mode 100644 index 0000000..c39b483 --- /dev/null +++ b/src/源代码/XNote/app/build/generated/source/buildConfig/androidTest/debug/com/xnote/activity/test/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.xnote.activity.test; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "com.xnote.activity.test"; + 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 = ""; +} diff --git a/src/源代码/XNote/app/build/generated/source/buildConfig/debug/com/xnote/activity/BuildConfig.java b/src/源代码/XNote/app/build/generated/source/buildConfig/debug/com/xnote/activity/BuildConfig.java new file mode 100644 index 0000000..ecabb3b --- /dev/null +++ b/src/源代码/XNote/app/build/generated/source/buildConfig/debug/com/xnote/activity/BuildConfig.java @@ -0,0 +1,13 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.xnote.activity; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String APPLICATION_ID = "com.xnote.activity"; + 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 = "1.0"; +} diff --git a/src/源代码/XNote/app/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/src/源代码/XNote/app/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml new file mode 100644 index 0000000..542f192 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json b/src/源代码/XNote/app/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json new file mode 100644 index 0000000..24412eb --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.xnote.activity","split":""}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/src/源代码/XNote/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/src/源代码/XNote/app/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt new file mode 100644 index 0000000..e69de29 diff --git a/src/源代码/XNote/app/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson b/src/源代码/XNote/app/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson new file mode 100644 index 0000000..eaec468 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/apk_list/debug/mainApkListPersistenceDebug/apk-list.gson @@ -0,0 +1 @@ +[{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/debug.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/debug.json new file mode 100644 index 0000000..ea0aec0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/debug.json @@ -0,0 +1,1724 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rHK_values-zh-rHK.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1667,1780,1874,1952", + "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,97,112,93,77,101", + "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1662,1775,1869,1947,2049" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-kk-rKZ_values-kk-rKZ.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,167,275,398,501,611,696,802,921,1002,1082,1163,1266,1371,1469,1576,1685,1785,1900,1999,2080", + "endColumns": "111,107,122,102,109,84,105,118,80,79,80,102,104,97,106,108,99,114,98,80,100", + "endOffsets": "162,270,393,496,606,691,797,916,997,1077,1158,1261,1366,1464,1571,1680,1780,1895,1994,2075,2176" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-it_values-it.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,495,604,688,797,922,999,1075,1156,1262,1370,1468,1572,1677,1784,1906,2006,2089", + "endColumns": "108,107,122,99,108,83,108,124,76,75,80,105,107,97,103,104,106,121,99,82,100", + "endOffsets": "159,267,390,490,599,683,792,917,994,1070,1151,1257,1365,1463,1567,1672,1779,1901,2001,2084,2185" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-mk-rMK_values-mk-rMK.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-mk-rMK\\values-mk-rMK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,286,390,498,584,689,808,891,973,1060,1166,1273,1374,1481,1592,1696,1794,1878", + "endColumns": "107,122,103,107,85,104,118,82,81,86,105,106,100,106,110,103,97,83,100", + "endOffsets": "158,281,385,493,579,684,803,886,968,1055,1161,1268,1369,1476,1587,1691,1789,1873,1974" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ca_values-ca.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,510,617,700,808,934,1018,1099,1182,1293,1402,1500,1610,1714,1822,1945,2044,2125", + "endColumns": "117,107,122,105,106,82,107,125,83,80,82,110,108,97,109,103,107,122,98,80,100", + "endOffsets": "168,276,399,505,612,695,803,929,1013,1094,1177,1288,1397,1495,1605,1709,1817,1940,2039,2120,2221" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v14_values-v14.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v14\\values-v14.xml", + "from": { + "startLines": "2,7,8,9,15,21,22,23,24,25,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,331,402,485,895,1317,1437,1569,1689,1752,1906,1969", + "endLines": "6,7,8,14,20,21,22,23,24,27,28,29", + "endColumns": "12,70,82,12,12,119,131,119,62,12,62,131", + "endOffsets": "326,397,480,890,1312,1432,1564,1684,1747,1901,1964,2096" + }, + "to": { + "startLines": "3,8,9,10,16,22,23,24,25,26,29,30", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "99,375,446,529,939,1361,1481,1613,1733,1796,1950,2013", + "endLines": "7,8,9,15,21,22,23,24,25,28,29,30", + "endColumns": "12,70,82,12,12,119,131,119,62,12,62,131", + "endOffsets": "370,441,524,934,1356,1476,1608,1728,1791,1945,2008,2140" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values-v14\\dimens.xml", + "from": { + "startLines": "4", + "startColumns": "4", + "startOffsets": "279", + "endColumns": "43", + "endOffsets": "318" + }, + "to": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "43", + "endOffsets": "94" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-cs_values-cs.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,162,271,395,497,606,692,797,914,995,1076,1160,1264,1373,1472,1578,1688,1795,1917,2015,2097", + "endColumns": "106,108,123,101,108,85,104,116,80,80,83,103,108,98,105,109,106,121,97,81,100", + "endOffsets": "157,266,390,492,601,687,792,909,990,1071,1155,1259,1368,1467,1573,1683,1790,1912,2010,2092,2193" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-tr_values-tr.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,490,602,687,793,913,992,1068,1147,1254,1359,1455,1562,1664,1772,1891,1989,2068", + "endColumns": "104,107,122,98,111,84,105,119,78,75,78,106,104,95,106,101,107,118,97,78,100", + "endOffsets": "155,263,386,485,597,682,788,908,987,1063,1142,1249,1354,1450,1557,1659,1767,1886,1984,2063,2164" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-es_values-es.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,516,624,709,810,938,1014,1090,1172,1279,1379,1478,1586,1693,1800,1922,2022,2104", + "endColumns": "116,107,122,112,107,84,100,127,75,75,81,106,99,98,107,106,106,121,99,81,100", + "endOffsets": "167,275,398,511,619,704,805,933,1009,1085,1167,1274,1374,1473,1581,1688,1795,1917,2017,2099,2200" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v18_values-v18.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v18\\values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sr_values-sr.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,498,604,690,794,912,993,1073,1161,1266,1374,1475,1579,1687,1788,1916,2013,2097", + "endColumns": "108,107,122,102,105,85,103,117,80,79,87,104,107,100,103,107,100,127,96,83,100", + "endOffsets": "159,267,390,493,599,685,789,907,988,1068,1156,1261,1369,1470,1574,1682,1783,1911,2008,2092,2193" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-da_values-da.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,488,600,683,783,896,973,1050,1129,1238,1346,1442,1556,1658,1759,1875,1972,2051", + "endColumns": "102,107,122,98,111,82,99,112,76,76,78,108,107,95,113,101,100,115,96,78,100", + "endOffsets": "153,261,384,483,595,678,778,891,968,1045,1124,1233,1341,1437,1551,1653,1754,1870,1967,2046,2147" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-port_values-port.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-port\\values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sw_values-sw.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,487,595,685,790,907,989,1072,1154,1255,1364,1463,1570,1679,1784,1903,2000,2082", + "endColumns": "102,107,122,97,107,89,104,116,81,82,81,100,108,98,106,108,104,118,96,81,100", + "endOffsets": "153,261,384,482,590,680,785,902,984,1067,1149,1250,1359,1458,1565,1674,1779,1898,1995,2077,2178" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rGB_values-en-rGB.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", + "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", + "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-fr-rCA_values-fr-rCA.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,166,274,397,512,623,710,826,956,1039,1119,1215,1325,1437,1540,1651,1758,1860,1982,2081,2167", + "endColumns": "110,107,122,114,110,86,115,129,82,79,95,109,111,102,110,106,101,121,98,85,100", + "endOffsets": "161,269,392,507,618,705,821,951,1034,1114,1210,1320,1432,1535,1646,1753,1855,1977,2076,2162,2263" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ka-rGE_values-ka-rGE.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ka-rGE\\values-ka-rGE.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,499,610,698,803,916,1000,1082,1165,1278,1385,1483,1596,1700,1804,1926,2024,2105", + "endColumns": "108,107,122,103,110,87,104,112,83,81,82,112,106,97,112,103,103,121,97,80,100", + "endOffsets": "159,267,390,494,605,693,798,911,995,1077,1160,1273,1380,1478,1591,1695,1799,1921,2019,2100,2201" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-pt-rPT_values-pt-rPT.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,512,619,708,809,933,1017,1098,1185,1292,1404,1506,1614,1721,1828,1950,2049,2134", + "endColumns": "119,107,122,105,106,88,100,123,83,80,86,106,111,101,107,106,106,121,98,84,100", + "endOffsets": "170,278,401,507,614,703,804,928,1012,1093,1180,1287,1399,1501,1609,1716,1823,1945,2044,2129,2230" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-lt_values-lt.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,171,279,402,503,616,703,812,933,1015,1096,1181,1290,1399,1499,1609,1713,1826,1956,2057,2140", + "endColumns": "115,107,122,100,112,86,108,120,81,80,84,108,108,99,109,103,112,129,100,82,100", + "endOffsets": "166,274,397,498,611,698,807,928,1010,1091,1176,1285,1394,1494,1604,1708,1821,1951,2052,2135,2236" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ar_values-ar.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,507,616,698,799,913,992,1071,1150,1255,1356,1452,1560,1663,1766,1885,1982,2063", + "endColumns": "116,107,122,103,108,81,100,113,78,78,78,104,100,95,107,102,102,118,96,80,100", + "endOffsets": "167,275,398,502,611,693,794,908,987,1066,1145,1250,1351,1447,1555,1658,1761,1880,1977,2058,2159" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-am_values-am.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,157,265,388,487,593,679,782,895,973,1051,1130,1230,1330,1426,1529,1628,1735,1851,1947,2026", + "endColumns": "101,107,122,98,105,85,102,112,77,77,78,99,99,95,102,98,106,115,95,78,100", + "endOffsets": "152,260,383,482,588,674,777,890,968,1046,1125,1225,1325,1421,1524,1623,1730,1846,1942,2021,2122" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-night-v8_values-night-v8.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-night-v8\\values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-large-v4_values-large-v4.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-large-v4\\values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-h720dp-v13_values-h720dp-v13.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-h720dp-v13\\values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ms-rMY_values-ms-rMY.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ms-rMY\\values-ms-rMY.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,166,274,397,502,610,697,801,912,990,1069,1149,1261,1370,1467,1576,1679,1786,1908,2009,2089", + "endColumns": "110,107,122,104,107,86,103,110,77,78,79,111,108,96,108,102,106,121,100,79,100", + "endOffsets": "161,269,392,497,605,692,796,907,985,1064,1144,1256,1365,1462,1571,1674,1781,1903,2004,2084,2185" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-af_values-af.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,596,681,784,902,978,1055,1136,1243,1346,1443,1551,1653,1755,1872,1970,2050", + "endColumns": "103,107,122,99,105,84,102,117,75,76,80,106,102,96,107,101,101,116,97,79,100", + "endOffsets": "154,262,385,485,591,676,779,897,973,1050,1131,1238,1341,1438,1546,1648,1750,1867,1965,2045,2146" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ru_values-ru.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,170,278,401,503,615,701,806,926,1005,1083,1163,1269,1377,1475,1584,1690,1798,1934,2034,2115", + "endColumns": "114,107,122,101,111,85,104,119,78,77,79,105,107,97,108,105,107,135,99,80,100", + "endOffsets": "165,273,396,498,610,696,801,921,1000,1078,1158,1264,1372,1470,1579,1685,1793,1929,2029,2110,2211" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-hu_values-hu.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,499,614,698,810,940,1016,1092,1175,1285,1396,1496,1607,1715,1834,1968,2071,2154", + "endColumns": "107,107,122,104,114,83,111,129,75,75,82,109,110,99,110,107,118,133,102,82,100", + "endOffsets": "158,266,389,494,609,693,805,935,1011,1087,1170,1280,1391,1491,1602,1710,1829,1963,2066,2149,2250" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-lv_values-lv.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,514,623,709,813,935,1017,1099,1184,1293,1405,1504,1615,1724,1829,1948,2047,2129", + "endColumns": "119,107,122,107,108,85,103,121,81,81,84,108,111,98,110,108,104,118,98,81,100", + "endOffsets": "170,278,401,509,618,704,808,930,1012,1094,1179,1288,1400,1499,1610,1719,1824,1943,2042,2124,2225" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-gl-rES_values-gl-rES.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-gl-rES\\values-gl-rES.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,167,275,398,510,618,703,805,931,1015,1096,1178,1285,1394,1493,1601,1704,1811,1933,2033,2115", + "endColumns": "111,107,122,111,107,84,101,125,83,80,81,106,108,98,107,102,106,121,99,81,100", + "endOffsets": "162,270,393,505,613,698,800,926,1010,1091,1173,1280,1389,1488,1596,1699,1806,1928,2028,2110,2211" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-hy-rAM_values-hy-rAM.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hy-rAM\\values-hy-rAM.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,490,600,689,795,910,992,1073,1158,1265,1372,1471,1581,1688,1788,1913,2012,2094", + "endColumns": "102,107,122,100,109,88,105,114,81,80,84,106,106,98,109,106,99,124,98,81,100", + "endOffsets": "153,261,384,485,595,684,790,905,987,1068,1153,1260,1367,1466,1576,1683,1783,1908,2007,2089,2190" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-bs-rBA_values-bs-rBA.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-bs-rBA\\values-bs-rBA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,174,282,405,514,621,709,810,932,1014,1095,1181,1284,1389,1487,1592,1703,1808,1928,2025,2109", + "endColumns": "118,107,122,108,106,87,100,121,81,80,85,102,104,97,104,110,104,119,96,83,100", + "endOffsets": "169,277,400,509,616,704,805,927,1009,1090,1176,1279,1384,1482,1587,1698,1803,1923,2020,2104,2205" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ja_values-ja.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,152,259,380,473,578,660,758,866,943,1019,1097,1199,1298,1393,1496,1591,1687,1798,1895,1973", + "endColumns": "96,106,120,92,104,81,97,107,76,75,77,101,98,94,102,94,95,110,96,77,100", + "endOffsets": "147,254,375,468,573,655,753,861,938,1014,1092,1194,1293,1388,1491,1586,1682,1793,1890,1968,2069" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-uk_values-uk.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,498,604,690,798,916,995,1075,1156,1262,1369,1467,1575,1681,1790,1914,2014,2095", + "endColumns": "109,107,122,101,105,85,107,117,78,79,80,105,106,97,107,105,108,123,99,80,100", + "endOffsets": "160,268,391,493,599,685,793,911,990,1070,1151,1257,1364,1462,1570,1676,1785,1909,2009,2090,2191" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-vi_values-vi.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,508,617,701,804,923,1000,1077,1161,1265,1374,1475,1580,1694,1799,1919,2018,2102", + "endColumns": "113,107,122,107,108,83,102,118,76,76,83,103,108,100,104,113,104,119,98,83,100", + "endOffsets": "164,272,395,503,612,696,799,918,995,1072,1156,1260,1369,1470,1575,1689,1794,1914,2013,2097,2198" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rIN_values-en-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", + "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", + "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-eu-rES_values-eu-rES.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-eu-rES\\values-eu-rES.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,493,603,689,795,919,1006,1090,1172,1281,1391,1490,1599,1712,1823,1960,2059,2141", + "endColumns": "108,107,122,97,109,85,105,123,86,83,81,108,109,98,108,112,110,136,98,81,100", + "endOffsets": "159,267,390,488,598,684,790,914,1001,1085,1167,1276,1386,1485,1594,1707,1818,1955,2054,2136,2237" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-is-rIS_values-is-rIS.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-is-rIS\\values-is-rIS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,155,263,386,483,595,680,781,895,975,1055,1136,1246,1354,1452,1561,1660,1763,1881,1979,2060", + "endColumns": "99,107,122,96,111,84,100,113,79,79,80,109,107,97,108,98,102,117,97,80,100", + "endOffsets": "150,258,381,478,590,675,776,890,970,1050,1131,1241,1349,1447,1556,1655,1758,1876,1974,2055,2156" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-de_values-de.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,489,601,687,792,907,984,1060,1142,1253,1356,1455,1566,1668,1775,1897,1999,2081", + "endColumns": "104,107,122,97,111,85,104,114,76,75,81,110,102,98,110,101,106,121,101,81,100", + "endOffsets": "155,263,386,484,596,682,787,902,979,1055,1137,1248,1351,1450,1561,1663,1770,1892,1994,2076,2177" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ml-rIN_values-ml-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ml-rIN\\values-ml-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,174,282,405,523,638,731,836,968,1045,1121,1203,1314,1420,1518,1632,1732,1843,1971,2072,2154", + "endColumns": "118,107,122,117,114,92,104,131,76,75,81,110,105,97,113,99,110,127,100,81,100", + "endOffsets": "169,277,400,518,633,726,831,963,1040,1116,1198,1309,1415,1513,1627,1727,1838,1966,2067,2149,2250" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sw600dp-v13_values-sw600dp-v13.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-iw_values-iw.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,269,395,494,602,686,786,900,978,1056,1135,1237,1341,1437,1540,1641,1741,1857,1953,2032", + "endColumns": "103,109,125,98,107,83,99,113,77,77,78,101,103,95,102,100,99,115,95,78,102", + "endOffsets": "154,264,390,489,597,681,781,895,973,1051,1130,1232,1336,1432,1535,1636,1736,1852,1948,2027,2130" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v24_values-v24.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v24\\values-v24.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,212,347,416,480,549", + "endColumns": "156,134,68,63,68,69", + "endOffsets": "207,342,411,475,544,614" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v22_values-v22.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v22\\values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-hdpi-v4_values-hdpi-v4.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hdpi-v4\\values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ky-rKG_values-ky-rKG.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ky-rKG\\values-ky-rKG.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,485,604,688,795,912,990,1069,1150,1260,1367,1465,1571,1678,1779,1903,2006,2087", + "endColumns": "103,107,122,94,118,83,106,116,77,78,80,109,106,97,105,106,100,123,102,80,100", + "endOffsets": "154,262,385,480,599,683,790,907,985,1064,1145,1255,1362,1460,1566,1673,1774,1898,2001,2082,2183" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-fa_values-fa.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,275,401,504,615,699,802,917,996,1074,1155,1267,1370,1468,1578,1681,1790,1915,2016,2097", + "endColumns": "109,109,125,102,110,83,102,114,78,77,80,111,102,97,109,102,108,124,100,80,100", + "endOffsets": "160,270,396,499,610,694,797,912,991,1069,1150,1262,1365,1463,1573,1676,1785,1910,2011,2092,2193" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-nl_values-nl.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,509,616,702,810,930,1007,1084,1166,1277,1381,1480,1595,1708,1811,1929,2032,2114", + "endColumns": "117,107,122,104,106,85,107,119,76,76,81,110,103,98,114,112,102,117,102,81,100", + "endOffsets": "168,276,399,504,611,697,805,925,1002,1079,1161,1272,1376,1475,1590,1703,1806,1924,2027,2109,2210" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-nb_values-nb.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,272,397,492,606,692,792,905,981,1057,1137,1240,1339,1435,1539,1637,1738,1854,1951,2030", + "endColumns": "107,108,124,94,113,85,99,112,75,75,79,102,98,95,103,97,100,115,96,78,100", + "endOffsets": "158,267,392,487,601,687,787,900,976,1052,1132,1235,1334,1430,1534,1632,1733,1849,1946,2025,2126" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-pt-rBR_values-pt-rBR.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", + "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", + "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-si-rLK_values-si-rLK.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-si-rLK\\values-si-rLK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,503,610,698,803,919,1008,1095,1179,1288,1393,1491,1601,1700,1806,1927,2026,2108", + "endColumns": "109,107,122,106,106,87,104,115,88,86,83,108,104,97,109,98,105,120,98,81,100", + "endOffsets": "160,268,391,498,605,693,798,914,1003,1090,1174,1283,1388,1486,1596,1695,1801,1922,2021,2103,2204" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-th_values-th.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,489,597,686,788,898,975,1053,1134,1242,1346,1444,1552,1657,1758,1874,1969,2050", + "endColumns": "104,107,122,97,107,88,101,109,76,77,80,107,103,97,107,104,100,115,94,80,100", + "endOffsets": "155,263,386,484,592,681,783,893,970,1048,1129,1237,1341,1439,1547,1652,1753,1869,1964,2045,2146" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-my-rMM_values-my-rMM.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-my-rMM\\values-my-rMM.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,397,502,619,712,824,952,1030,1109,1195,1318,1430,1532,1658,1769,1879,2002,2102,2186", + "endColumns": "108,107,124,104,116,92,111,127,77,78,85,122,111,101,125,110,109,122,99,83,100", + "endOffsets": "159,267,392,497,614,707,819,947,1025,1104,1190,1313,1425,1527,1653,1764,1874,1997,2097,2181,2282" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-pl_values-pl.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,171,279,402,504,612,698,807,926,1004,1081,1163,1272,1381,1480,1589,1700,1808,1931,2027,2109", + "endColumns": "115,107,122,101,107,85,108,118,77,76,81,108,108,98,108,110,107,122,95,81,100", + "endOffsets": "166,274,397,499,607,693,802,921,999,1076,1158,1267,1376,1475,1584,1695,1803,1926,2022,2104,2205" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sq-rAL_values-sq-rAL.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sq-rAL\\values-sq-rAL.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,500,612,699,809,932,1013,1092,1175,1281,1386,1484,1590,1693,1809,1940,2039,2120", + "endColumns": "113,107,122,99,111,86,109,122,80,78,82,105,104,97,105,102,115,130,98,80,100", + "endOffsets": "164,272,395,495,607,694,804,927,1008,1087,1170,1276,1381,1479,1585,1688,1804,1935,2034,2115,2216" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v12_values-v12.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v12\\values-v12.xml", + "from": { + "startLines": "2,5,8,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,279,479,598", + "endLines": "4,7,8,9", + "endColumns": "12,12,118,94", + "endOffsets": "274,474,593,688" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ur-rPK_values-ur-rPK.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ur-rPK\\values-ur-rPK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,502,611,697,801,921,997,1073,1158,1266,1375,1477,1588,1688,1796,1925,2023,2103", + "endColumns": "109,107,122,105,108,85,103,119,75,75,84,107,108,101,110,99,107,128,97,79,102", + "endOffsets": "160,268,391,497,606,692,796,916,992,1068,1153,1261,1370,1472,1583,1683,1791,1920,2018,2098,2201" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-kn-rIN_values-kn-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-kn-rIN\\values-kn-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,516,629,717,824,951,1028,1105,1187,1303,1414,1513,1626,1730,1844,1970,2070,2152", + "endColumns": "117,107,122,111,112,87,106,126,76,76,81,115,110,98,112,103,113,125,99,81,100", + "endOffsets": "168,276,399,511,624,712,819,946,1023,1100,1182,1298,1409,1508,1621,1725,1839,1965,2065,2147,2248" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-be-rBY_values-be-rBY.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-be-rBY\\values-be-rBY.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,509,625,711,819,937,1016,1094,1177,1283,1389,1487,1595,1700,1805,1925,2025,2106", + "endColumns": "119,107,122,102,115,85,107,117,78,77,82,105,105,97,107,104,104,119,99,80,108", + "endOffsets": "170,278,401,504,620,706,814,932,1011,1089,1172,1278,1384,1482,1590,1695,1800,1920,2020,2101,2210" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-es-rUS_values-es-rUS.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,515,623,708,809,932,1017,1099,1181,1293,1405,1506,1614,1721,1828,1950,2050,2132", + "endColumns": "119,107,122,108,107,84,100,122,84,81,81,111,111,100,107,106,106,121,99,81,100", + "endOffsets": "170,278,401,510,618,703,804,927,1012,1094,1176,1288,1400,1501,1609,1716,1823,1945,2045,2127,2228" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sk_values-sk.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,162,270,393,493,604,690,798,916,994,1072,1156,1261,1370,1469,1575,1686,1795,1919,2017,2105", + "endColumns": "106,107,122,99,110,85,107,117,77,77,83,104,108,98,105,110,108,123,97,87,100", + "endOffsets": "157,265,388,488,599,685,793,911,989,1067,1151,1256,1365,1464,1570,1681,1790,1914,2012,2100,2201" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-az-rAZ_values-az-rAZ.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-az-rAZ\\values-az-rAZ.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,493,605,693,800,914,995,1074,1159,1266,1373,1473,1582,1686,1796,1893,1976", + "endColumns": "107,107,122,98,111,87,106,113,80,78,84,106,106,99,108,103,109,96,82,100", + "endOffsets": "158,266,389,488,600,688,795,909,990,1069,1154,1261,1368,1468,1577,1681,1791,1888,1971,2072" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v16_values-v16.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-mn-rMN_values-mn-rMN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-mn-rMN\\values-mn-rMN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,168,276,399,499,612,699,805,917,999,1081,1163,1272,1376,1473,1581,1682,1785,1907,2004,2085", + "endColumns": "112,107,122,99,112,86,105,111,81,81,81,108,103,96,107,100,102,121,96,80,100", + "endOffsets": "163,271,394,494,607,694,800,912,994,1076,1158,1267,1371,1468,1576,1677,1780,1902,1999,2080,2181" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-hi_values-hi.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,508,615,700,802,924,1001,1079,1169,1278,1380,1478,1588,1688,1803,1928,2034,2113", + "endColumns": "116,107,122,104,106,84,101,121,76,77,89,108,101,97,109,99,114,124,105,78,100", + "endOffsets": "167,275,398,503,610,695,797,919,996,1074,1164,1273,1375,1473,1583,1683,1798,1923,2029,2108,2209" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-km-rKH_values-km-rKH.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-km-rKH\\values-km-rKH.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,489,601,688,792,910,987,1064,1147,1251,1356,1456,1566,1673,1781,1904,2002,2085", + "endColumns": "102,107,122,99,111,86,103,117,76,76,82,103,104,99,109,106,107,122,97,82,100", + "endOffsets": "153,261,384,484,596,683,787,905,982,1059,1142,1246,1351,1451,1561,1668,1776,1899,1997,2080,2181" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-el_values-el.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,515,632,717,822,948,1036,1122,1207,1318,1428,1530,1641,1750,1858,1981,2081,2166", + "endColumns": "117,107,122,110,116,84,104,125,87,85,84,110,109,101,110,108,107,122,99,84,100", + "endOffsets": "168,276,399,510,627,712,817,943,1031,1117,1202,1313,1423,1525,1636,1745,1853,1976,2076,2161,2262" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-in_values-in.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,498,603,690,794,910,992,1071,1157,1260,1369,1470,1574,1682,1790,1913,2012,2096", + "endColumns": "109,107,122,101,104,86,103,115,81,78,85,102,108,100,103,107,107,122,98,83,100", + "endOffsets": "160,268,391,493,598,685,789,905,987,1066,1152,1255,1364,1465,1569,1677,1785,1908,2007,2091,2192" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ne-rNP_values-ne-rNP.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ne-rNP\\values-ne-rNP.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,495,603,694,801,928,1022,1112,1200,1310,1426,1529,1644,1746,1861,1992,2104,2190", + "endColumns": "104,107,122,103,107,90,106,126,93,89,87,109,115,102,114,101,114,130,111,85,100", + "endOffsets": "155,263,386,490,598,689,796,923,1017,1107,1195,1305,1421,1524,1639,1741,1856,1987,2099,2185,2286" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-lo-rLA_values-lo-rLA.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-lo-rLA\\values-lo-rLA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,486,593,678,783,895,972,1050,1130,1237,1334,1432,1537,1640,1744,1866,1962,2043", + "endColumns": "102,107,122,96,106,84,104,111,76,77,79,106,96,97,104,102,103,121,95,80,100", + "endOffsets": "153,261,384,481,588,673,778,890,967,1045,1125,1232,1329,1427,1532,1635,1739,1861,1957,2038,2139" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-tl_values-tl.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,174,282,405,513,630,718,824,945,1024,1102,1186,1295,1406,1507,1617,1734,1842,1965,2067,2151", + "endColumns": "118,107,122,107,116,87,105,120,78,77,83,108,110,100,109,116,107,122,101,83,100", + "endOffsets": "169,277,400,508,625,713,819,940,1019,1097,1181,1290,1401,1502,1612,1729,1837,1960,2062,2146,2247" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-pt_values-pt.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", + "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", + "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-et-rEE_values-et-rEE.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-et-rEE\\values-et-rEE.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,510,621,707,809,926,1006,1084,1167,1278,1383,1482,1592,1693,1796,1924,2026,2108", + "endColumns": "116,107,122,106,110,85,101,116,79,77,82,110,104,98,109,100,102,127,101,81,100", + "endOffsets": "167,275,398,505,616,702,804,921,1001,1079,1162,1273,1378,1477,1587,1688,1791,1919,2021,2103,2204" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ta-rIN_values-ta-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ta-rIN\\values-ta-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,505,620,709,816,942,1023,1103,1185,1287,1391,1488,1598,1700,1807,1926,2026,2106", + "endColumns": "113,107,122,104,114,88,106,125,80,79,81,101,103,96,109,101,106,118,99,79,100", + "endOffsets": "164,272,395,500,615,704,811,937,1018,1098,1180,1282,1386,1483,1593,1695,1802,1921,2021,2101,2202" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rTW_values-zh-rTW.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1669,1782,1876,1954", + "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,99,112,93,77,100", + "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1664,1777,1871,1949,2050" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-fi_values-fi.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,494,595,681,786,904,991,1073,1153,1260,1363,1460,1566,1665,1769,1888,1987,2067", + "endColumns": "107,107,122,99,100,85,104,117,86,81,79,106,102,96,105,98,103,118,98,79,100", + "endOffsets": "158,266,389,489,590,676,781,899,986,1068,1148,1255,1358,1455,1561,1660,1764,1883,1982,2062,2163" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values_values.arsc.flat", + "map": [ + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "36,35,21,13,26,5,6,7,41,42,18,27,44,48,49,45,47,11,12,23,10,38,39,17,4,24,16,15,9,46,53,54,19,32,33,20,51,50,28,30,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "1661,1626,963,522,1182,140,184,237,1892,1953,786,1232,2036,2252,2328,2097,2203,408,451,1028,359,1734,1794,726,96,1092,665,614,312,2156,2575,2638,845,1478,1537,908,2481,2408,1295,1397,1349", + "endColumns": "41,33,39,69,48,42,51,51,59,62,57,61,59,74,78,57,47,41,69,62,47,58,61,58,42,65,59,49,45,45,61,64,61,57,57,53,68,71,52,50,46", + "endOffsets": "1698,1655,998,587,1226,178,231,284,1947,2011,839,1289,2091,2322,2402,2150,2246,445,516,1086,402,1788,1851,780,134,1153,720,659,353,2197,2632,2698,902,1531,1590,957,2545,2475,1343,1443,1391" + }, + "to": { + "startLines": "337,338,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,408,409", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "33232,33274,35546,35586,35656,35705,35748,35800,35852,35912,35975,36033,36095,36155,36230,36309,36367,36415,36457,36527,36590,36638,36697,36759,36818,36861,36927,36987,37037,37083,37129,37191,37256,37371,37429,37487,37541,37610,37682,37735,37786", + "endColumns": "41,33,39,69,48,42,51,51,59,62,57,61,59,74,78,57,47,41,69,62,47,58,61,58,42,65,59,49,45,45,61,64,61,57,57,53,68,71,52,50,46", + "endOffsets": "33269,33303,35581,35651,35700,35743,35795,35847,35907,35970,36028,36090,36150,36225,36304,36362,36410,36452,36522,36585,36633,36692,36754,36813,36856,36922,36982,37032,37078,37124,37186,37251,37313,37424,37482,37536,37605,37677,37730,37781,37828" + } + }, + { + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\values\\values.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,101,148,244", + "endLines": "2,3,4,11", + "endColumns": "45,46,50,12", + "endOffsets": "96,143,194,558" + }, + "to": { + "startLines": "30,31,32,417", + "startColumns": "4,4,4,4", + "startOffsets": "2016,2062,2109,38367", + "endLines": "30,31,32,422", + "endColumns": "45,46,50,12", + "endOffsets": "2057,2104,2155,38681" + } + }, + { + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\values\\values.xml", + "from": { + "startLines": "2,14,15,16", + "startColumns": "4,4,4,4", + "startOffsets": "55,584,639,695", + "endLines": "12,14,15,19", + "endColumns": "24,54,55,12", + "endOffsets": "534,634,690,908" + }, + "to": { + "startLines": "118,411,412,1437", + "startColumns": "4,4,4,4", + "startOffsets": "15651,37904,37959,103320", + "endLines": "128,411,412,1440", + "endColumns": "24,54,55,12", + "endOffsets": "16130,37954,38010,103533" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\dimens.xml", + "from": { + "startLines": "5,6,7,8,4,3", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "344,397,451,505,291,245", + "endColumns": "51,52,52,51,51,44", + "endOffsets": "391,445,499,552,338,285" + }, + "to": { + "startLines": "316,317,318,319,320,321", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "32108,32160,32213,32266,32318,32370", + "endColumns": "51,52,52,51,51,44", + "endOffsets": "32155,32208,32261,32313,32365,32410" + } + }, + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values\\values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,86,87,88,89,90,91,92,93,107,108,109,112,113,114,126,127,133,134,135,136,148,149,150,151,152,153,154,181,182,188,189,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,359,360,364,368,373,379,386,390,394,399,403,407,411,415,419,423,427,431,435,439,443,447,452,456,459,463,467,471,475,479,483,487,491,495,499,503,504,505,506,509,512,515,518,522,523,524,525,526,529,531,533,535,540,541,545,551,555,556,558,569,570,574,580,584,585,586,590,617,621,622,626,654,813,835,994,1016,1043,1050,1055,1077,1082,1087,1097,1106,1115,1119,1126,1134,1141,1142,1151,1154,1157,1161,1165,1169,1172,1173,1177,1181,1191,1196,1203,1209,1210,1213,1217,1222,1224,1226,1229,1232,1234,1238,1241,1248,1251,1254,1258,1260,1264,1266,1272,1274,1278,1286,1294,1306,1312,1321,1324,1335,1338,1343,1357,1362,1404,1447,1448,1458,1467,1468,1470,1474,1477,1480,1483,1486,1490,1493,1496,1499,1503,1506,1510,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1538,1542,1543,1544,1545,1546,1550,1551,1555,1556,1558,1560,1561,1562,1563,1564,1565,1566,1568,1569,1571,1572,1574,1576,1577,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1598,1600,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1616,1617,1618,1619,1620,1621,1623,1627,1631,1632,1633,1634,1635,1636,1637,1638,1640,1642,1644,1646,1648,1649,1650,1651,1653,1655,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1671,1672,1673,1674,1676,1678,1679,1681,1682,1684,1686,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1701,1702,1703,1704,1706,1707,1708,1709,1710,1711,1712,1714,1716,1718,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1333,1410,1488,1594,1700,1779,1859,1916,1974,2048,2123,2188,2254,2326,2399,2466,2534,2593,2652,2711,2770,2829,2883,2937,2990,3044,3098,3152,3206,3275,3338,3427,3501,3580,3653,3727,3798,3870,3942,4015,4072,4130,4203,4277,4351,4426,4498,4571,4641,4712,6627,6731,6832,6879,7127,7319,7710,7849,8423,8743,8902,15305,15417,15578,16050,16473,17066,17287,17446,17705,18668,19107,19295,19423,19597,20378,20595,21926,22311,23684,23929,24419,24572,24641,24710,24780,24854,24930,24994,25071,25147,25224,25288,25353,25422,25499,25574,25643,25711,25788,25854,25951,26016,26085,26184,26255,26314,26372,26429,26488,26559,26631,26703,26775,26847,26914,26982,27050,27109,27172,27236,27326,27417,27477,27543,27610,27676,27746,27810,27863,27976,28034,28097,28162,28227,28302,28375,28447,28496,28557,28618,28679,28741,28805,28869,28933,28998,29061,29121,29182,29248,29307,29367,29429,29500,29560,29628,29714,29801,29891,29978,30066,30148,30231,30321,30412,30473,30534,30596,30660,30722,30783,30851,30951,31011,31077,31150,31219,31276,31328,31390,31462,31538,31595,31643,31692,31743,31777,31824,31873,31919,31951,32015,32077,32137,32207,32281,32359,32452,32522,32600,32654,32724,32809,32857,32903,32974,33052,33130,33202,33276,33350,33424,33504,33577,33646,33718,33795,33847,33920,33994,34063,34138,34212,34286,34375,34445,34498,34569,34647,34737,34825,34921,35422,35511,35758,36039,36324,36717,37194,37416,37638,37906,38133,38363,38593,38823,39053,39280,39519,39745,39990,40220,40468,40687,40970,41178,41309,41536,41782,42007,42254,42475,42720,42996,43297,43621,43912,44226,44363,44494,44599,44841,45008,45212,45420,45691,45803,45915,46020,46137,46351,46497,46637,46723,47071,47159,47389,47807,48040,48122,48220,48837,48937,49173,49597,49836,49930,50019,50256,52308,52550,52652,52889,55073,65242,66493,76761,78024,79516,80052,80382,81647,81903,82139,82686,83180,83785,83983,84563,85127,85502,85620,86158,86315,86511,86784,87040,87210,87351,87415,87697,87983,88659,88923,89261,89614,89708,89894,90200,90462,90587,90714,90953,91164,91283,91476,91653,92108,92289,92411,92670,92783,92970,93072,93516,93640,93915,94423,94919,95796,96090,96660,96809,97541,97713,98049,99107,99385,102571,105900,105962,106592,107206,107292,107405,107634,107794,107946,108117,108284,108527,108697,108870,109041,109315,109514,109719,110049,110133,110229,110325,110423,110523,110625,110727,110829,110931,111033,111133,111229,111341,111470,111593,111724,111855,111953,112067,112161,112360,112564,112633,112749,112877,112941,113145,113214,113417,113487,113627,113761,113857,113969,114069,114185,114281,114393,114533,114669,114833,114963,115121,115271,115412,115556,115691,115803,115953,116081,116209,116345,116477,116607,116737,116849,116989,117057,117130,117204,117277,117351,117497,117641,117779,117845,117935,118011,118115,118205,118307,118415,118523,118623,118703,118795,118893,119003,119081,119187,119279,119383,119493,119615,119778,119935,120015,120115,120205,120315,120409,120515,120607,120707,120819,120933,121049,121165,121259,121373,121485,121587,121707,121829,121911,122015,122135,122261,122359,122453,122541,122653,122769,122891,123003,123178,123294,123380,123472,123584,123708,123775,123901,123969,124097,124241,124369,124438,124533,124648,124761,124860,124969,125080,125191,125292,125397,125497,125627,125718,125841,125935,126047,126133,126237,126333,126408,126478,126566,126684,126788,126892,127018,127106,127214,127314,127404,127514,127598,127700,127784,127838,127902,128008,128118,128202", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,85,86,87,88,89,90,91,92,106,107,108,111,112,113,125,126,132,133,134,135,147,148,149,150,151,152,153,180,181,187,188,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,358,359,363,367,372,378,385,389,393,398,402,406,410,414,418,422,426,430,434,438,442,446,451,455,458,462,466,470,474,478,482,486,490,494,498,502,503,504,505,508,511,514,517,521,522,523,524,525,528,530,532,534,539,540,544,550,554,555,557,568,569,573,579,583,584,585,589,616,620,621,625,653,812,834,993,1015,1042,1049,1054,1076,1081,1086,1096,1105,1114,1118,1125,1133,1140,1141,1150,1153,1156,1160,1164,1168,1171,1172,1176,1180,1190,1195,1202,1208,1209,1212,1216,1221,1223,1225,1228,1231,1233,1237,1240,1247,1250,1253,1257,1259,1263,1265,1271,1273,1277,1285,1293,1305,1311,1320,1323,1334,1337,1342,1356,1361,1403,1446,1447,1457,1466,1467,1469,1473,1476,1479,1482,1485,1489,1492,1495,1498,1502,1505,1509,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1537,1541,1542,1543,1544,1545,1549,1550,1554,1555,1557,1559,1560,1561,1562,1563,1564,1565,1567,1568,1570,1571,1573,1575,1576,1578,1579,1580,1581,1582,1583,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1597,1599,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1615,1616,1617,1618,1619,1620,1622,1626,1630,1631,1632,1633,1634,1635,1636,1637,1639,1641,1643,1645,1647,1648,1649,1650,1652,1654,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1670,1671,1672,1673,1675,1677,1678,1680,1681,1683,1685,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1700,1701,1702,1703,1705,1706,1707,1708,1709,1710,1711,1713,1715,1717,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733", + "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,68,62,88,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,1290,103,100,46,247,191,390,138,35,319,158,5063,111,160,35,422,83,220,158,258,177,438,187,127,173,780,216,375,384,458,244,35,152,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,56,47,48,50,33,46,48,45,31,63,61,59,69,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,68,115,127,63,12,68,12,69,12,12,95,111,99,115,95,111,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,67,72,73,72,73,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,74,69,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", + "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1405,1483,1589,1695,1774,1854,1911,1969,2043,2118,2183,2249,2321,2394,2461,2529,2588,2647,2706,2765,2824,2878,2932,2985,3039,3093,3147,3201,3270,3333,3422,3496,3575,3648,3722,3793,3865,3937,4010,4067,4125,4198,4272,4346,4421,4493,4566,4636,4707,6622,6726,6827,6874,7122,7314,7705,7844,8418,8738,8897,15300,15412,15573,16045,16468,17061,17282,17441,17700,18663,19102,19290,19418,19592,20373,20590,21921,22306,23679,23924,24414,24567,24636,24705,24775,24849,24925,24989,25066,25142,25219,25283,25348,25417,25494,25569,25638,25706,25783,25849,25946,26011,26080,26179,26250,26309,26367,26424,26483,26554,26626,26698,26770,26842,26909,26977,27045,27104,27167,27231,27321,27412,27472,27538,27605,27671,27741,27805,27858,27971,28029,28092,28157,28222,28297,28370,28442,28491,28552,28613,28674,28736,28800,28864,28928,28993,29056,29116,29177,29243,29302,29362,29424,29495,29555,29623,29709,29796,29886,29973,30061,30143,30226,30316,30407,30468,30529,30591,30655,30717,30778,30846,30946,31006,31072,31145,31214,31271,31323,31385,31457,31533,31590,31638,31687,31738,31772,31819,31868,31914,31946,32010,32072,32132,32202,32276,32354,32447,32517,32595,32649,32719,32804,32852,32898,32969,33047,33125,33197,33271,33345,33419,33499,33572,33641,33713,33790,33842,33915,33989,34058,34133,34207,34281,34370,34440,34493,34564,34642,34732,34820,34916,35417,35506,35753,36034,36319,36712,37189,37411,37633,37901,38128,38358,38588,38818,39048,39275,39514,39740,39985,40215,40463,40682,40965,41173,41304,41531,41777,42002,42249,42470,42715,42991,43292,43616,43907,44221,44358,44489,44594,44836,45003,45207,45415,45686,45798,45910,46015,46132,46346,46492,46632,46718,47066,47154,47384,47802,48035,48117,48215,48832,48932,49168,49592,49831,49925,50014,50251,52303,52545,52647,52884,55068,65237,66488,76756,78019,79511,80047,80377,81642,81898,82134,82681,83175,83780,83978,84558,85122,85497,85615,86153,86310,86506,86779,87035,87205,87346,87410,87692,87978,88654,88918,89256,89609,89703,89889,90195,90457,90582,90709,90948,91159,91278,91471,91648,92103,92284,92406,92665,92778,92965,93067,93511,93635,93910,94418,94914,95791,96085,96655,96804,97536,97708,98044,99102,99380,102566,105895,105957,106587,107201,107287,107400,107629,107789,107941,108112,108279,108522,108692,108865,109036,109310,109509,109714,110044,110128,110224,110320,110418,110518,110620,110722,110824,110926,111028,111128,111224,111336,111465,111588,111719,111850,111948,112062,112156,112355,112559,112628,112744,112872,112936,113140,113209,113412,113482,113622,113756,113852,113964,114064,114180,114276,114388,114528,114664,114828,114958,115116,115266,115407,115551,115686,115798,115948,116076,116204,116340,116472,116602,116732,116844,116984,117052,117125,117199,117272,117346,117492,117636,117774,117840,117930,118006,118110,118200,118302,118410,118518,118618,118698,118790,118888,118998,119076,119182,119274,119378,119488,119610,119773,119930,120010,120110,120200,120310,120404,120510,120602,120702,120814,120928,121044,121160,121254,121368,121480,121582,121702,121824,121906,122010,122130,122256,122354,122448,122536,122648,122764,122886,122998,123173,123289,123375,123467,123579,123703,123770,123896,123964,124092,124236,124364,124433,124528,124643,124756,124855,124964,125075,125186,125287,125392,125492,125622,125713,125836,125930,126042,126128,126232,126328,126403,126473,126561,126679,126783,126887,127013,127101,127209,127309,127399,127509,127593,127695,127779,127833,127897,128003,128113,128197,128317" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,75,91,92,93,94,95,96,97,98,112,113,114,117,129,130,142,143,149,150,151,152,164,165,166,167,168,169,170,197,198,204,205,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,401,410,413,414,415,416,423,430,431,435,439,444,450,457,461,465,470,474,478,482,486,490,494,498,502,506,510,514,518,523,527,530,534,538,542,546,550,554,558,562,566,570,574,575,576,577,580,583,586,589,593,594,595,596,597,600,602,604,606,611,612,616,622,626,627,629,640,641,645,651,655,656,657,661,688,692,693,697,725,884,906,1065,1087,1114,1121,1126,1148,1153,1158,1168,1177,1186,1190,1197,1205,1212,1213,1222,1225,1228,1232,1236,1240,1243,1244,1248,1252,1262,1267,1274,1280,1281,1284,1288,1293,1295,1297,1300,1303,1305,1309,1312,1319,1322,1325,1329,1331,1335,1337,1343,1345,1349,1357,1365,1377,1383,1392,1395,1406,1409,1414,1428,1441,1483,1526,1527,1537,1546,1547,1549,1553,1556,1559,1562,1565,1569,1572,1575,1578,1582,1585,1589,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1617,1621,1622,1623,1624,1625,1629,1630,1634,1635,1637,1639,1640,1641,1642,1643,1644,1645,1647,1648,1650,1651,1653,1655,1656,1658,1659,1660,1661,1662,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1677,1679,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1695,1696,1697,1698,1699,1700,1702,1706,1710,1711,1712,1713,1714,1715,1716,1734,1736,1738,1740,1742,1744,1745,1746,1747,1749,1751,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1767,1768,1769,1770,1772,1774,1775,1777,1778,1780,1782,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1797,1798,1799,1800,1802,1803,1804,1805,1806,1807,1808,1810,1812,1814,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1375,1452,1530,1636,1742,1821,1901,1958,2160,2234,2309,2374,2440,2512,2585,2652,2720,2779,2838,2897,2956,3015,3069,3123,3176,3230,3284,3338,3392,3461,3524,3613,3687,3766,3839,3913,3984,4056,4128,4201,4258,4316,4389,4463,4537,4612,4684,4757,4827,4946,6861,6965,7066,7113,7361,7553,7944,8083,8657,8977,9136,15539,16135,16296,16768,17191,17784,18005,18164,18423,19386,19825,20013,20141,20315,21096,21313,22644,23029,24402,24647,25137,25290,25359,25428,25498,25572,25648,25712,25789,25865,25942,26006,26071,26140,26217,26292,26361,26429,26506,26572,26669,26734,26803,26902,26973,27032,27090,27147,27206,27277,27349,27421,27493,27565,27632,27700,27768,27827,27890,27954,28044,28135,28195,28261,28328,28394,28464,28528,28581,28694,28752,28815,28880,28945,29020,29093,29165,29214,29275,29336,29397,29459,29523,29587,29651,29716,29779,29839,29900,29966,30025,30085,30147,30218,30278,30346,30432,30519,30609,30696,30784,30866,30949,31039,31130,31191,31252,31314,31378,31440,31501,31569,31669,31729,31795,31868,31937,31994,32046,32415,32487,32563,32620,32668,32717,32768,32802,32849,32898,32944,32976,33040,33102,33162,33308,33382,33460,33553,33623,33701,33755,33825,33910,33958,34004,34075,34153,34231,34303,34377,34451,34525,34605,34678,34747,34819,34896,34948,35021,35095,35164,35239,35313,35387,35476,37318,37833,38015,38093,38183,38271,38686,39187,39276,39523,39804,40089,40482,40959,41181,41403,41671,41898,42128,42358,42588,42818,43045,43284,43510,43755,43985,44233,44452,44735,44943,45074,45301,45547,45772,46019,46240,46485,46761,47062,47386,47677,47991,48128,48259,48364,48606,48773,48977,49185,49456,49568,49680,49785,49902,50116,50262,50402,50488,50836,50924,51154,51572,51805,51887,51985,52602,52702,52938,53362,53601,53695,53784,54021,56073,56315,56417,56654,58838,69007,70258,80526,81789,83281,83817,84147,85412,85668,85904,86451,86945,87550,87748,88328,88892,89267,89385,89923,90080,90276,90549,90805,90975,91116,91180,91462,91748,92424,92688,93026,93379,93473,93659,93965,94227,94352,94479,94718,94929,95048,95241,95418,95873,96054,96176,96435,96548,96735,96837,97281,97405,97680,98188,98684,99561,99855,100425,100574,101306,101478,101814,102872,103538,106724,110053,110115,110745,111359,111445,111558,111787,111947,112099,112270,112437,112680,112850,113023,113194,113468,113667,113872,114202,114286,114382,114478,114576,114676,114778,114880,114982,115084,115186,115286,115382,115494,115623,115746,115877,116008,116106,116220,116314,116513,116717,116786,116902,117030,117094,117298,117367,117570,117640,117780,117914,118010,118122,118222,118338,118434,118546,118686,118822,118986,119116,119274,119424,119565,119709,119844,119956,120106,120234,120362,120498,120630,120760,120890,121002,121142,121210,121283,121357,121430,121504,121650,121794,121932,121998,122088,122164,122268,122358,122460,122568,122676,122776,122856,122948,123046,123156,123234,123340,123432,123536,123646,123768,123931,124088,124168,124268,124358,124468,124562,124668,125498,125598,125710,125824,125940,126056,126150,126264,126376,126478,126598,126720,126802,126906,127026,127152,127250,127344,127432,127544,127660,127782,127894,128069,128185,128271,128363,128475,128599,128666,128792,128860,128988,129132,129260,129329,129424,129539,129652,129751,129860,129971,130082,130183,130288,130388,130518,130609,130732,130826,130938,131024,131128,131224,131299,131369,131457,131575,131679,131783,131909,131997,132105,132205,132295,132405,132489,132591,132675,132729,132793,132899,133009,133093", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,90,91,92,93,94,95,96,97,111,112,113,116,117,129,141,142,148,149,150,151,163,164,165,166,167,168,169,196,197,203,204,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,401,410,413,414,415,416,429,430,434,438,443,449,456,460,464,469,473,477,481,485,489,493,497,501,505,509,513,517,522,526,529,533,537,541,545,549,553,557,561,565,569,573,574,575,576,579,582,585,588,592,593,594,595,596,599,601,603,605,610,611,615,621,625,626,628,639,640,644,650,654,655,656,660,687,691,692,696,724,883,905,1064,1086,1113,1120,1125,1147,1152,1157,1167,1176,1185,1189,1196,1204,1211,1212,1221,1224,1227,1231,1235,1239,1242,1243,1247,1251,1261,1266,1273,1279,1280,1283,1287,1292,1294,1296,1299,1302,1304,1308,1311,1318,1321,1324,1328,1330,1334,1336,1342,1344,1348,1356,1364,1376,1382,1391,1394,1405,1408,1413,1427,1432,1482,1525,1526,1536,1545,1546,1548,1552,1555,1558,1561,1564,1568,1571,1574,1577,1581,1584,1588,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1616,1620,1621,1622,1623,1624,1628,1629,1633,1634,1636,1638,1639,1640,1641,1642,1643,1644,1646,1647,1649,1650,1652,1654,1655,1657,1658,1659,1660,1661,1662,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1676,1678,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1694,1695,1696,1697,1698,1699,1701,1705,1709,1710,1711,1712,1713,1714,1715,1716,1735,1737,1739,1741,1743,1744,1745,1746,1748,1750,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1766,1767,1768,1769,1771,1773,1774,1776,1777,1779,1781,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1796,1797,1798,1799,1801,1802,1803,1804,1805,1806,1807,1809,1811,1813,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829", + "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,68,62,88,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,1290,103,100,46,247,191,390,138,35,319,158,5063,111,160,35,422,83,220,158,258,177,438,187,127,173,780,216,375,384,458,244,35,152,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,56,47,48,50,33,46,48,45,31,63,61,59,69,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,68,115,127,63,12,68,12,69,12,12,95,111,99,115,95,111,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,67,72,73,72,73,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,74,69,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", + "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1447,1525,1631,1737,1816,1896,1953,2011,2229,2304,2369,2435,2507,2580,2647,2715,2774,2833,2892,2951,3010,3064,3118,3171,3225,3279,3333,3387,3456,3519,3608,3682,3761,3834,3908,3979,4051,4123,4196,4253,4311,4384,4458,4532,4607,4679,4752,4822,4893,6856,6960,7061,7108,7356,7548,7939,8078,8652,8972,9131,15534,15646,16291,16763,17186,17779,18000,18159,18418,19381,19820,20008,20136,20310,21091,21308,22639,23024,24397,24642,25132,25285,25354,25423,25493,25567,25643,25707,25784,25860,25937,26001,26066,26135,26212,26287,26356,26424,26501,26567,26664,26729,26798,26897,26968,27027,27085,27142,27201,27272,27344,27416,27488,27560,27627,27695,27763,27822,27885,27949,28039,28130,28190,28256,28323,28389,28459,28523,28576,28689,28747,28810,28875,28940,29015,29088,29160,29209,29270,29331,29392,29454,29518,29582,29646,29711,29774,29834,29895,29961,30020,30080,30142,30213,30273,30341,30427,30514,30604,30691,30779,30861,30944,31034,31125,31186,31247,31309,31373,31435,31496,31564,31664,31724,31790,31863,31932,31989,32041,32103,32482,32558,32615,32663,32712,32763,32797,32844,32893,32939,32971,33035,33097,33157,33227,33377,33455,33548,33618,33696,33750,33820,33905,33953,33999,34070,34148,34226,34298,34372,34446,34520,34600,34673,34742,34814,34891,34943,35016,35090,35159,35234,35308,35382,35471,35541,37366,37899,38088,38178,38266,38362,39182,39271,39518,39799,40084,40477,40954,41176,41398,41666,41893,42123,42353,42583,42813,43040,43279,43505,43750,43980,44228,44447,44730,44938,45069,45296,45542,45767,46014,46235,46480,46756,47057,47381,47672,47986,48123,48254,48359,48601,48768,48972,49180,49451,49563,49675,49780,49897,50111,50257,50397,50483,50831,50919,51149,51567,51800,51882,51980,52597,52697,52933,53357,53596,53690,53779,54016,56068,56310,56412,56649,58833,69002,70253,80521,81784,83276,83812,84142,85407,85663,85899,86446,86940,87545,87743,88323,88887,89262,89380,89918,90075,90271,90544,90800,90970,91111,91175,91457,91743,92419,92683,93021,93374,93468,93654,93960,94222,94347,94474,94713,94924,95043,95236,95413,95868,96049,96171,96430,96543,96730,96832,97276,97400,97675,98183,98679,99556,99850,100420,100569,101301,101473,101809,102867,103145,106719,110048,110110,110740,111354,111440,111553,111782,111942,112094,112265,112432,112675,112845,113018,113189,113463,113662,113867,114197,114281,114377,114473,114571,114671,114773,114875,114977,115079,115181,115281,115377,115489,115618,115741,115872,116003,116101,116215,116309,116508,116712,116781,116897,117025,117089,117293,117362,117565,117635,117775,117909,118005,118117,118217,118333,118429,118541,118681,118817,118981,119111,119269,119419,119560,119704,119839,119951,120101,120229,120357,120493,120625,120755,120885,120997,121137,121205,121278,121352,121425,121499,121645,121789,121927,121993,122083,122159,122263,122353,122455,122563,122671,122771,122851,122943,123041,123151,123229,123335,123427,123531,123641,123763,123926,124083,124163,124263,124353,124463,124557,124663,124755,125593,125705,125819,125935,126051,126145,126259,126371,126473,126593,126715,126797,126901,127021,127147,127245,127339,127427,127539,127655,127777,127889,128064,128180,128266,128358,128470,128594,128661,128787,128855,128983,129127,129255,129324,129419,129534,129647,129746,129855,129966,130077,130178,130283,130383,130513,130604,130727,130821,130933,131019,131123,131219,131294,131364,131452,131570,131674,131778,131904,131992,132100,132200,132290,132400,132484,132586,132670,132724,132788,132894,133004,133088,133208" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\styles.xml", + "from": { + "startLines": "4,24,9,16", + "startColumns": "4,4,4,4", + "startOffsets": "105,970,324,610", + "endLines": "7,27,14,22", + "endColumns": "12,12,12,12", + "endOffsets": "273,1156,564,921" + }, + "to": { + "startLines": "1433,1717,1721,1727", + "startColumns": "4,4,4,4", + "startOffsets": "103150,124760,124948,125188", + "endLines": "1436,1720,1726,1733", + "endColumns": "12,12,12,12", + "endOffsets": "103315,124943,125183,125493" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\colors.xml", + "from": { + "startLines": "3,4", + "startColumns": "4,4", + "startOffsets": "138,181", + "endColumns": "41,47", + "endOffsets": "175,224" + }, + "to": { + "startLines": "21,74", + "startColumns": "4,4", + "startOffsets": "1333,4898", + "endColumns": "41,47", + "endOffsets": "1370,4941" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-te-rIN_values-te-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-te-rIN\\values-te-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,509,620,710,815,940,1022,1104,1189,1302,1410,1510,1621,1723,1840,1967,2068,2151", + "endColumns": "113,107,122,108,110,89,104,124,81,81,84,112,107,99,110,101,116,126,100,82,100", + "endOffsets": "164,272,395,504,615,705,810,935,1017,1099,1184,1297,1405,1505,1616,1718,1835,1962,2063,2146,2247" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-gu-rIN_values-gu-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-gu-rIN\\values-gu-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,499,606,693,794,917,994,1072,1152,1258,1360,1457,1566,1665,1775,1896,1999,2079", + "endColumns": "108,107,122,103,106,86,100,122,76,77,79,105,101,96,108,98,109,120,102,79,100", + "endOffsets": "159,267,390,494,601,688,789,912,989,1067,1147,1253,1355,1452,1561,1660,1770,1891,1994,2074,2175" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v13_values-v13.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v13\\values-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "58", + "endOffsets": "109" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ko_values-ko.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,258,381,475,577,659,757,863,942,1018,1098,1196,1291,1386,1486,1582,1681,1796,1890,1968", + "endColumns": "94,107,122,93,101,81,97,105,78,75,79,97,94,94,99,95,98,114,93,77,100", + "endOffsets": "145,253,376,470,572,654,752,858,937,1013,1093,1191,1286,1381,1481,1577,1676,1791,1885,1963,2064" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v11_values-v11.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v11\\values-v11.xml", + "from": { + "startLines": "2,8,14,20,26,32,38,39,43,47,48,52,56,57,61,66,71,76,78,80,81,82,136,191", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,474,899,1327,1753,2180,2605,2694,2940,3189,3290,3542,3797,3900,4153,4561,4981,5403,5510,5639,5710,5793,9818,13986", + "endLines": "7,13,19,25,31,37,38,42,46,47,51,55,56,60,65,70,75,77,79,80,81,135,190,191", + "endColumns": "12,12,12,12,12,12,88,12,12,100,12,12,102,12,12,12,12,12,12,70,82,12,12,90", + "endOffsets": "469,894,1322,1748,2175,2600,2689,2935,3184,3285,3537,3792,3895,4148,4556,4976,5398,5505,5634,5705,5788,9813,13981,14072" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-xlarge-v4_values-xlarge-v4.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-xlarge-v4\\values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-b+sr+Latn_values-b+sr+Latn.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,499,605,691,795,913,995,1076,1164,1270,1378,1479,1584,1692,1793,1921,2018,2102", + "endColumns": "108,107,122,103,105,85,103,117,81,80,87,105,107,100,104,107,100,127,96,83,100", + "endOffsets": "159,267,390,494,600,686,790,908,990,1071,1159,1265,1373,1474,1579,1687,1788,1916,2013,2097,2198" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-zh-rCN_values-zh-rCN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,151,258,381,476,576,658,755,861,937,1013,1091,1187,1283,1378,1475,1570,1668,1780,1874,1952", + "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", + "endOffsets": "146,253,376,471,571,653,750,856,932,1008,1086,1182,1278,1373,1470,1565,1663,1775,1869,1947,2048" + }, + "to": { + "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,54,63", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "127,223,330,453,548,648,730,827,933,1009,1085,1163,1259,1355,1450,1547,1642,1740,1852,3445,3923", + "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", + "endOffsets": "218,325,448,543,643,725,822,928,1004,1080,1158,1254,1350,1445,1542,1637,1735,1847,1941,3518,4019" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values-zh-rCN\\strings.xml", + "from": { + "startLines": "36,35,21,13,26,5,6,7,41,42,18,27,44,48,49,45,47,11,12,23,10,38,39,17,4,24,16,15,9,46,53,54,19,32,33,20,51,50,28,30,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "1447,1413,829,470,1018,131,174,226,1655,1708,690,1062,1776,1956,2015,1825,1913,384,422,889,341,1514,1569,639,92,943,590,545,299,1873,2205,2259,735,1284,1334,783,2126,2072,1112,1208,1162", + "endColumns": "37,33,36,54,43,42,51,51,52,49,44,49,48,58,56,47,42,37,47,53,42,54,51,50,38,52,48,44,41,39,53,50,47,49,49,45,55,53,49,47,45", + "endOffsets": "1480,1442,861,520,1057,169,221,273,1703,1753,730,1107,1820,2010,2067,1868,1951,417,465,938,379,1564,1616,685,126,991,634,585,336,1908,2254,2305,778,1329,1379,824,2177,2121,1157,1251,1203" + }, + "to": { + "startLines": "2,3,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,93,1946,1983,2038,2082,2125,2177,2229,2282,2332,2377,2427,2476,2535,2592,2640,2683,2721,2769,2823,2866,2921,2973,3024,3063,3116,3165,3210,3252,3292,3346,3397,3523,3573,3623,3669,3725,3779,3829,3877", + "endColumns": "37,33,36,54,43,42,51,51,52,49,44,49,48,58,56,47,42,37,47,53,42,54,51,50,38,52,48,44,41,39,53,50,47,49,49,45,55,53,49,47,45", + "endOffsets": "88,122,1978,2033,2077,2120,2172,2224,2277,2327,2372,2422,2471,2530,2587,2635,2678,2716,2764,2818,2861,2916,2968,3019,3058,3111,3160,3205,3247,3287,3341,3392,3440,3568,3618,3664,3720,3774,3824,3872,3918" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v17_values-v17.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v17\\values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,26,29,32,35,39,42,46", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1164,1406,1577,1751,1920,2193,2393,2597", + "endLines": "4,8,11,14,17,21,25,28,31,34,38,41,45,49", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1159,1401,1572,1746,1915,2188,2388,2592,2921" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ldltr-v21_values-ldltr-v21.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ldltr-v21\\values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-fr_values-fr.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,166,274,397,512,623,705,811,941,1024,1104,1190,1300,1412,1515,1626,1733,1840,1962,2061,2147", + "endColumns": "110,107,122,114,110,81,105,129,82,79,85,109,111,102,110,106,106,121,98,85,100", + "endOffsets": "161,269,392,507,618,700,806,936,1019,1099,1185,1295,1407,1510,1621,1728,1835,1957,2056,2142,2243" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sl_values-sl.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,162,270,393,500,608,695,798,917,1002,1086,1170,1278,1387,1487,1600,1707,1811,1928,2025,2108", + "endColumns": "106,107,122,106,107,86,102,118,84,83,83,107,108,99,112,106,103,116,96,82,100", + "endOffsets": "157,265,388,495,603,690,793,912,997,1081,1165,1273,1382,1482,1595,1702,1806,1923,2020,2103,2204" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v21_values-v21.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v21\\values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251,263,264,265,268,271,272,275,276,279,282", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9099,12179,12377,12577,12700,12823,12936,13119,13250,13451,13540,13651,13884,13985,14080,14203,14332,14449,14626,14725,14860,15003,15138,15257,15458,15577,15670,15781,15837,15944,16139,16250,16383,16478,16569,16660,16777,16916,16987,17070,17750,17807,17865,18559,19265,19384,19513,19684,19850,19979,20150,20281,20451,20626", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262,263,264,267,270,271,274,275,278,281,286", + "endColumns": "103,63,66,63,90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12,12,12", + "endOffsets": "154,218,285,349,440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9094,12174,12372,12572,12695,12818,12931,13114,13245,13446,13535,13646,13879,13980,14075,14198,14327,14444,14621,14720,14855,14998,15133,15252,15453,15572,15665,15776,15832,15939,16134,16245,16378,16473,16564,16655,16772,16911,16982,17065,17745,17802,17860,18554,19260,19379,19508,19679,19845,19974,20145,20276,20446,20621,20962" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-ro_values-ro.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,176,284,407,511,624,712,824,945,1030,1112,1195,1307,1420,1520,1634,1739,1845,1966,2069,2152", + "endColumns": "120,107,122,103,112,87,111,120,84,81,82,111,112,99,113,104,105,120,102,82,100", + "endOffsets": "171,279,402,506,619,707,819,940,1025,1107,1190,1302,1415,1515,1629,1734,1840,1961,2064,2147,2248" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v23_values-v23.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v23\\values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-land_values-land.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-land\\values-land.xml", + "from": { + "startLines": "2,3,4,5", + "startColumns": "4,4,4,4", + "startOffsets": "55,125,189,260", + "endColumns": "69,63,70,67", + "endOffsets": "120,184,255,323" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-sv_values-sv.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,161,269,392,495,606,691,793,906,982,1058,1138,1244,1344,1440,1545,1647,1749,1866,1968,2047", + "endColumns": "105,107,122,102,110,84,101,112,75,75,79,105,99,95,104,101,101,116,101,78,100", + "endOffsets": "156,264,387,490,601,686,788,901,977,1053,1133,1239,1339,1435,1540,1642,1744,1861,1963,2042,2143" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-bg_values-bg.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,170,281,409,516,621,707,812,933,1012,1090,1173,1287,1396,1496,1610,1716,1824,1947,2046,2129", + "endColumns": "114,110,127,106,104,85,104,120,78,77,82,113,108,99,113,105,107,122,98,82,100", + "endOffsets": "165,276,404,511,616,702,807,928,1007,1085,1168,1282,1391,1491,1605,1711,1819,1942,2041,2124,2225" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-pa-rIN_values-pa-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pa-rIN\\values-pa-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,161,269,392,497,602,688,788,901,978,1054,1133,1234,1335,1432,1541,1640,1750,1872,1972,2051", + "endColumns": "105,107,122,104,104,85,99,112,76,75,78,100,100,96,108,98,109,121,99,78,100", + "endOffsets": "156,264,387,492,597,683,783,896,973,1049,1128,1229,1330,1427,1536,1635,1745,1867,1967,2046,2147" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-bn-rBD_values-bn-rBD.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-bn-rBD\\values-bn-rBD.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,507,613,707,812,941,1019,1097,1184,1294,1410,1517,1627,1733,1846,1974,2079,2169", + "endColumns": "108,107,122,111,105,93,104,128,77,77,86,109,115,106,109,105,112,127,104,89,100", + "endOffsets": "159,267,390,502,608,702,807,936,1014,1092,1179,1289,1405,1512,1622,1728,1841,1969,2074,2164,2265" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-v25_values-v25.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v25\\values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-hr_values-hr.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,488,598,684,788,907,991,1074,1160,1264,1377,1483,1588,1701,1808,1931,2028,2117", + "endColumns": "104,107,122,96,109,85,103,118,83,82,85,103,112,105,104,112,106,122,96,88,100", + "endOffsets": "155,263,386,483,593,679,783,902,986,1069,1155,1259,1372,1478,1583,1696,1803,1926,2023,2112,2213" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-en-rAU_values-en-rAU.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", + "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", + "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-mr-rIN_values-mr-rIN.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-mr-rIN\\values-mr-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,510,617,707,808,923,1000,1078,1158,1270,1372,1468,1577,1678,1793,1916,2021,2101", + "endColumns": "117,107,122,105,106,89,100,114,76,77,79,111,101,95,108,100,114,122,104,79,100", + "endOffsets": "168,276,399,505,612,702,803,918,995,1073,1153,1265,1367,1463,1572,1673,1788,1911,2016,2096,2197" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-uz-rUZ_values-uz-rUZ.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,495,609,695,806,922,1002,1081,1165,1274,1381,1482,1590,1695,1802,1926,2025,2109", + "endColumns": "104,107,122,103,113,85,110,115,79,78,83,108,106,100,107,104,106,123,98,83,100", + "endOffsets": "155,263,386,490,604,690,801,917,997,1076,1160,1269,1376,1477,1585,1690,1797,1921,2020,2104,2205" + } + } + ] + }, + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\values-zu_values-zu.arsc.flat", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,501,615,703,806,933,1013,1093,1179,1283,1389,1487,1594,1700,1806,1926,2022,2103", + "endColumns": "107,107,122,106,113,87,102,126,79,79,85,103,105,97,106,105,105,119,95,80,100", + "endOffsets": "158,266,389,496,610,698,801,928,1008,1088,1174,1278,1384,1482,1589,1695,1801,1921,2017,2098,2199" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-af.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-af.json new file mode 100644 index 0000000..17ea335 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-af.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-af\\values-af.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-af\\values-af.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,596,681,784,902,978,1055,1136,1243,1346,1443,1551,1653,1755,1872,1970,2050", + "endColumns": "103,107,122,99,105,84,102,117,75,76,80,106,102,96,107,101,101,116,97,79,100", + "endOffsets": "154,262,385,485,591,676,779,897,973,1050,1131,1238,1341,1438,1546,1648,1750,1867,1965,2045,2146" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-am.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-am.json new file mode 100644 index 0000000..132cb3e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-am.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-am\\values-am.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-am\\values-am.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,157,265,388,487,593,679,782,895,973,1051,1130,1230,1330,1426,1529,1628,1735,1851,1947,2026", + "endColumns": "101,107,122,98,105,85,102,112,77,77,78,99,99,95,102,98,106,115,95,78,100", + "endOffsets": "152,260,383,482,588,674,777,890,968,1046,1125,1225,1325,1421,1524,1623,1730,1846,1942,2021,2122" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json new file mode 100644 index 0000000..1377d09 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ar\\values-ar.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ar\\values-ar.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,507,616,698,799,913,992,1071,1150,1255,1356,1452,1560,1663,1766,1885,1982,2063", + "endColumns": "116,107,122,103,108,81,100,113,78,78,78,104,100,95,107,102,102,118,96,80,100", + "endOffsets": "167,275,398,502,611,693,794,908,987,1066,1145,1250,1351,1447,1555,1658,1761,1880,1977,2058,2159" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-az-rAZ.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-az-rAZ.json new file mode 100644 index 0000000..1bcf2b6 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-az-rAZ.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-az-rAZ\\values-az-rAZ.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-az-rAZ\\values-az-rAZ.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,493,605,693,800,914,995,1074,1159,1266,1373,1473,1582,1686,1796,1893,1976", + "endColumns": "107,107,122,98,111,87,106,113,80,78,84,106,106,99,108,103,109,96,82,100", + "endOffsets": "158,266,389,488,600,688,795,909,990,1069,1154,1261,1368,1468,1577,1681,1791,1888,1971,2072" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json new file mode 100644 index 0000000..4d8252f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-b+sr+Latn\\values-b+sr+Latn.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,499,605,691,795,913,995,1076,1164,1270,1378,1479,1584,1692,1793,1921,2018,2102", + "endColumns": "108,107,122,103,105,85,103,117,81,80,87,105,107,100,104,107,100,127,96,83,100", + "endOffsets": "159,267,390,494,600,686,790,908,990,1071,1159,1265,1373,1474,1579,1687,1788,1916,2013,2097,2198" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-be-rBY.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-be-rBY.json new file mode 100644 index 0000000..7d108c8 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-be-rBY.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-be-rBY\\values-be-rBY.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-be-rBY\\values-be-rBY.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,509,625,711,819,937,1016,1094,1177,1283,1389,1487,1595,1700,1805,1925,2025,2106", + "endColumns": "119,107,122,102,115,85,107,117,78,77,82,105,105,97,107,104,104,119,99,80,108", + "endOffsets": "170,278,401,504,620,706,814,932,1011,1089,1172,1278,1384,1482,1590,1695,1800,1920,2020,2101,2210" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json new file mode 100644 index 0000000..6cf89fe --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bg\\values-bg.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-bg\\values-bg.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,170,281,409,516,621,707,812,933,1012,1090,1173,1287,1396,1496,1610,1716,1824,1947,2046,2129", + "endColumns": "114,110,127,106,104,85,104,120,78,77,82,113,108,99,113,105,107,122,98,82,100", + "endOffsets": "165,276,404,511,616,702,807,928,1007,1085,1168,1282,1391,1491,1605,1711,1819,1942,2041,2124,2225" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bn-rBD.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bn-rBD.json new file mode 100644 index 0000000..06126c3 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bn-rBD.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bn-rBD\\values-bn-rBD.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-bn-rBD\\values-bn-rBD.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,507,613,707,812,941,1019,1097,1184,1294,1410,1517,1627,1733,1846,1974,2079,2169", + "endColumns": "108,107,122,111,105,93,104,128,77,77,86,109,115,106,109,105,112,127,104,89,100", + "endOffsets": "159,267,390,502,608,702,807,936,1014,1092,1179,1289,1405,1512,1622,1728,1841,1969,2074,2164,2265" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bs-rBA.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bs-rBA.json new file mode 100644 index 0000000..21adb5d --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-bs-rBA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-bs-rBA\\values-bs-rBA.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-bs-rBA\\values-bs-rBA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,174,282,405,514,621,709,810,932,1014,1095,1181,1284,1389,1487,1592,1703,1808,1928,2025,2109", + "endColumns": "118,107,122,108,106,87,100,121,81,80,85,102,104,97,104,110,104,119,96,83,100", + "endOffsets": "169,277,400,509,616,704,805,927,1009,1090,1176,1279,1384,1482,1587,1698,1803,1923,2020,2104,2205" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json new file mode 100644 index 0000000..ee22422 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ca\\values-ca.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ca\\values-ca.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,510,617,700,808,934,1018,1099,1182,1293,1402,1500,1610,1714,1822,1945,2044,2125", + "endColumns": "117,107,122,105,106,82,107,125,83,80,82,110,108,97,109,103,107,122,98,80,100", + "endOffsets": "168,276,399,505,612,695,803,929,1013,1094,1177,1288,1397,1495,1605,1709,1817,1940,2039,2120,2221" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json new file mode 100644 index 0000000..68f62c5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-cs\\values-cs.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-cs\\values-cs.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,162,271,395,497,606,692,797,914,995,1076,1160,1264,1373,1472,1578,1688,1795,1917,2015,2097", + "endColumns": "106,108,123,101,108,85,104,116,80,80,83,103,108,98,105,109,106,121,97,81,100", + "endOffsets": "157,266,390,492,601,687,792,909,990,1071,1155,1259,1368,1467,1573,1683,1790,1912,2010,2092,2193" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-da.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-da.json new file mode 100644 index 0000000..6b3c8ec --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-da.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-da\\values-da.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-da\\values-da.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,488,600,683,783,896,973,1050,1129,1238,1346,1442,1556,1658,1759,1875,1972,2051", + "endColumns": "102,107,122,98,111,82,99,112,76,76,78,108,107,95,113,101,100,115,96,78,100", + "endOffsets": "153,261,384,483,595,678,778,891,968,1045,1124,1233,1341,1437,1551,1653,1754,1870,1967,2046,2147" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-de.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-de.json new file mode 100644 index 0000000..c88dec0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-de.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-de\\values-de.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-de\\values-de.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,489,601,687,792,907,984,1060,1142,1253,1356,1455,1566,1668,1775,1897,1999,2081", + "endColumns": "104,107,122,97,111,85,104,114,76,75,81,110,102,98,110,101,106,121,101,81,100", + "endOffsets": "155,263,386,484,596,682,787,902,979,1055,1137,1248,1351,1450,1561,1663,1770,1892,1994,2076,2177" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-el.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-el.json new file mode 100644 index 0000000..9f7795f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-el.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-el\\values-el.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-el\\values-el.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,515,632,717,822,948,1036,1122,1207,1318,1428,1530,1641,1750,1858,1981,2081,2166", + "endColumns": "117,107,122,110,116,84,104,125,87,85,84,110,109,101,110,108,107,122,99,84,100", + "endOffsets": "168,276,399,510,627,712,817,943,1031,1117,1202,1313,1423,1525,1636,1745,1853,1976,2076,2161,2262" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json new file mode 100644 index 0000000..c518025 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rAU\\values-en-rAU.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-en-rAU\\values-en-rAU.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", + "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", + "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json new file mode 100644 index 0000000..c3db507 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rGB\\values-en-rGB.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-en-rGB\\values-en-rGB.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", + "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", + "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json new file mode 100644 index 0000000..b103624 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-en-rIN\\values-en-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-en-rIN\\values-en-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,490,598,682,782,897,974,1050,1132,1235,1339,1438,1543,1646,1750,1869,1969,2051", + "endColumns": "103,107,122,99,107,83,99,114,76,75,81,102,103,98,104,102,103,118,99,81,100", + "endOffsets": "154,262,385,485,593,677,777,892,969,1045,1127,1230,1334,1433,1538,1641,1745,1864,1964,2046,2147" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json new file mode 100644 index 0000000..06ead2a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es-rUS\\values-es-rUS.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-es-rUS\\values-es-rUS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,515,623,708,809,932,1017,1099,1181,1293,1405,1506,1614,1721,1828,1950,2050,2132", + "endColumns": "119,107,122,108,107,84,100,122,84,81,81,111,111,100,107,106,106,121,99,81,100", + "endOffsets": "170,278,401,510,618,703,804,927,1012,1094,1176,1288,1400,1501,1609,1716,1823,1945,2045,2127,2228" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-es.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-es.json new file mode 100644 index 0000000..4fd9d6f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-es.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-es\\values-es.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-es\\values-es.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,516,624,709,810,938,1014,1090,1172,1279,1379,1478,1586,1693,1800,1922,2022,2104", + "endColumns": "116,107,122,112,107,84,100,127,75,75,81,106,99,98,107,106,106,121,99,81,100", + "endOffsets": "167,275,398,511,619,704,805,933,1009,1085,1167,1274,1374,1473,1581,1688,1795,1917,2017,2099,2200" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-et-rEE.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-et-rEE.json new file mode 100644 index 0000000..dfc926e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-et-rEE.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-et-rEE\\values-et-rEE.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-et-rEE\\values-et-rEE.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,510,621,707,809,926,1006,1084,1167,1278,1383,1482,1592,1693,1796,1924,2026,2108", + "endColumns": "116,107,122,106,110,85,101,116,79,77,82,110,104,98,109,100,102,127,101,81,100", + "endOffsets": "167,275,398,505,616,702,804,921,1001,1079,1162,1273,1378,1477,1587,1688,1791,1919,2021,2103,2204" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-eu-rES.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-eu-rES.json new file mode 100644 index 0000000..1057fdc --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-eu-rES.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-eu-rES\\values-eu-rES.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-eu-rES\\values-eu-rES.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,493,603,689,795,919,1006,1090,1172,1281,1391,1490,1599,1712,1823,1960,2059,2141", + "endColumns": "108,107,122,97,109,85,105,123,86,83,81,108,109,98,108,112,110,136,98,81,100", + "endOffsets": "159,267,390,488,598,684,790,914,1001,1085,1167,1276,1386,1485,1594,1707,1818,1955,2054,2136,2237" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json new file mode 100644 index 0000000..50c26fd --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fa\\values-fa.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fa\\values-fa.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,275,401,504,615,699,802,917,996,1074,1155,1267,1370,1468,1578,1681,1790,1915,2016,2097", + "endColumns": "109,109,125,102,110,83,102,114,78,77,80,111,102,97,109,102,108,124,100,80,100", + "endOffsets": "160,270,396,499,610,694,797,912,991,1069,1150,1262,1365,1463,1573,1676,1785,1910,2011,2092,2193" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json new file mode 100644 index 0000000..aa2ec4a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fi\\values-fi.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fi\\values-fi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,494,595,681,786,904,991,1073,1153,1260,1363,1460,1566,1665,1769,1888,1987,2067", + "endColumns": "107,107,122,99,100,85,104,117,86,81,79,106,102,96,105,98,103,118,98,79,100", + "endOffsets": "158,266,389,489,590,676,781,899,986,1068,1148,1255,1358,1455,1561,1660,1764,1883,1982,2062,2163" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json new file mode 100644 index 0000000..41671c9 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr-rCA\\values-fr-rCA.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fr-rCA\\values-fr-rCA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,166,274,397,512,623,710,826,956,1039,1119,1215,1325,1437,1540,1651,1758,1860,1982,2081,2167", + "endColumns": "110,107,122,114,110,86,115,129,82,79,95,109,111,102,110,106,101,121,98,85,100", + "endOffsets": "161,269,392,507,618,705,821,951,1034,1114,1210,1320,1432,1535,1646,1753,1855,1977,2076,2162,2263" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json new file mode 100644 index 0000000..1dde009 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-fr\\values-fr.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-fr\\values-fr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,166,274,397,512,623,705,811,941,1024,1104,1190,1300,1412,1515,1626,1733,1840,1962,2061,2147", + "endColumns": "110,107,122,114,110,81,105,129,82,79,85,109,111,102,110,106,106,121,98,85,100", + "endOffsets": "161,269,392,507,618,700,806,936,1019,1099,1185,1295,1407,1510,1621,1728,1835,1957,2056,2142,2243" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-gl-rES.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-gl-rES.json new file mode 100644 index 0000000..a6ef1d9 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-gl-rES.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gl-rES\\values-gl-rES.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-gl-rES\\values-gl-rES.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,167,275,398,510,618,703,805,931,1015,1096,1178,1285,1394,1493,1601,1704,1811,1933,2033,2115", + "endColumns": "111,107,122,111,107,84,101,125,83,80,81,106,108,98,107,102,106,121,99,81,100", + "endOffsets": "162,270,393,505,613,698,800,926,1010,1091,1173,1280,1389,1488,1596,1699,1806,1928,2028,2110,2211" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-gu-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-gu-rIN.json new file mode 100644 index 0000000..c698922 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-gu-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-gu-rIN\\values-gu-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-gu-rIN\\values-gu-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,499,606,693,794,917,994,1072,1152,1258,1360,1457,1566,1665,1775,1896,1999,2079", + "endColumns": "108,107,122,103,106,86,100,122,76,77,79,105,101,96,108,98,109,120,102,79,100", + "endOffsets": "159,267,390,494,601,688,789,912,989,1067,1147,1253,1355,1452,1561,1660,1770,1891,1994,2074,2175" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json new file mode 100644 index 0000000..ea6be4a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-h720dp-v13\\values-h720dp-v13.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-h720dp-v13\\values-h720dp-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "66", + "endOffsets": "117" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json new file mode 100644 index 0000000..d66ab31 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hdpi-v4\\values-hdpi-v4.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hdpi-v4\\values-hdpi-v4.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endLines": "6", + "endColumns": "13", + "endOffsets": "327" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json new file mode 100644 index 0000000..9762bad --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hi\\values-hi.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hi\\values-hi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,172,280,403,508,615,700,802,924,1001,1079,1169,1278,1380,1478,1588,1688,1803,1928,2034,2113", + "endColumns": "116,107,122,104,106,84,101,121,76,77,89,108,101,97,109,99,114,124,105,78,100", + "endOffsets": "167,275,398,503,610,695,797,919,996,1074,1164,1273,1375,1473,1583,1683,1798,1923,2029,2108,2209" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json new file mode 100644 index 0000000..75fecbb --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hr\\values-hr.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hr\\values-hr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,488,598,684,788,907,991,1074,1160,1264,1377,1483,1588,1701,1808,1931,2028,2117", + "endColumns": "104,107,122,96,109,85,103,118,83,82,85,103,112,105,104,112,106,122,96,88,100", + "endOffsets": "155,263,386,483,593,679,783,902,986,1069,1155,1259,1372,1478,1583,1696,1803,1926,2023,2112,2213" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json new file mode 100644 index 0000000..f7377e8 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hu\\values-hu.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hu\\values-hu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,499,614,698,810,940,1016,1092,1175,1285,1396,1496,1607,1715,1834,1968,2071,2154", + "endColumns": "107,107,122,104,114,83,111,129,75,75,82,109,110,99,110,107,118,133,102,82,100", + "endOffsets": "158,266,389,494,609,693,805,935,1011,1087,1170,1280,1391,1491,1602,1710,1829,1963,2066,2149,2250" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hy-rAM.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hy-rAM.json new file mode 100644 index 0000000..e559dde --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-hy-rAM.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-hy-rAM\\values-hy-rAM.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-hy-rAM\\values-hy-rAM.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,490,600,689,795,910,992,1073,1158,1265,1372,1471,1581,1688,1788,1913,2012,2094", + "endColumns": "102,107,122,100,109,88,105,114,81,80,84,106,106,98,109,106,99,124,98,81,100", + "endOffsets": "153,261,384,485,595,684,790,905,987,1068,1153,1260,1367,1466,1576,1683,1783,1908,2007,2089,2190" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-in.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-in.json new file mode 100644 index 0000000..3f34c74 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-in.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-in\\values-in.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-in\\values-in.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,498,603,690,794,910,992,1071,1157,1260,1369,1470,1574,1682,1790,1913,2012,2096", + "endColumns": "109,107,122,101,104,86,103,115,81,78,85,102,108,100,103,107,107,122,98,83,100", + "endOffsets": "160,268,391,493,598,685,789,905,987,1066,1152,1255,1364,1465,1569,1677,1785,1908,2007,2091,2192" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-is-rIS.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-is-rIS.json new file mode 100644 index 0000000..602dec5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-is-rIS.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-is-rIS\\values-is-rIS.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-is-rIS\\values-is-rIS.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,155,263,386,483,595,680,781,895,975,1055,1136,1246,1354,1452,1561,1660,1763,1881,1979,2060", + "endColumns": "99,107,122,96,111,84,100,113,79,79,80,109,107,97,108,98,102,117,97,80,100", + "endOffsets": "150,258,381,478,590,675,776,890,970,1050,1131,1241,1349,1447,1556,1655,1758,1876,1974,2055,2156" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-it.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-it.json new file mode 100644 index 0000000..8c182e4 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-it.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-it\\values-it.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-it\\values-it.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,495,604,688,797,922,999,1075,1156,1262,1370,1468,1572,1677,1784,1906,2006,2089", + "endColumns": "108,107,122,99,108,83,108,124,76,75,80,105,107,97,103,104,106,121,99,82,100", + "endOffsets": "159,267,390,490,599,683,792,917,994,1070,1151,1257,1365,1463,1567,1672,1779,1901,2001,2084,2185" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json new file mode 100644 index 0000000..6ba7d47 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-iw\\values-iw.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-iw\\values-iw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,269,395,494,602,686,786,900,978,1056,1135,1237,1341,1437,1540,1641,1741,1857,1953,2032", + "endColumns": "103,109,125,98,107,83,99,113,77,77,78,101,103,95,102,100,99,115,95,78,102", + "endOffsets": "154,264,390,489,597,681,781,895,973,1051,1130,1232,1336,1432,1535,1636,1736,1852,1948,2027,2130" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json new file mode 100644 index 0000000..9cb742b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ja\\values-ja.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ja\\values-ja.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,152,259,380,473,578,660,758,866,943,1019,1097,1199,1298,1393,1496,1591,1687,1798,1895,1973", + "endColumns": "96,106,120,92,104,81,97,107,76,75,77,101,98,94,102,94,95,110,96,77,100", + "endOffsets": "147,254,375,468,573,655,753,861,938,1014,1092,1194,1293,1388,1491,1586,1682,1793,1890,1968,2069" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ka-rGE.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ka-rGE.json new file mode 100644 index 0000000..a0a5e7e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ka-rGE.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ka-rGE\\values-ka-rGE.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ka-rGE\\values-ka-rGE.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,499,610,698,803,916,1000,1082,1165,1278,1385,1483,1596,1700,1804,1926,2024,2105", + "endColumns": "108,107,122,103,110,87,104,112,83,81,82,112,106,97,112,103,103,121,97,80,100", + "endOffsets": "159,267,390,494,605,693,798,911,995,1077,1160,1273,1380,1478,1591,1695,1799,1921,2019,2100,2201" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-kk-rKZ.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-kk-rKZ.json new file mode 100644 index 0000000..73d6411 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-kk-rKZ.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kk-rKZ\\values-kk-rKZ.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-kk-rKZ\\values-kk-rKZ.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,167,275,398,501,611,696,802,921,1002,1082,1163,1266,1371,1469,1576,1685,1785,1900,1999,2080", + "endColumns": "111,107,122,102,109,84,105,118,80,79,80,102,104,97,106,108,99,114,98,80,100", + "endOffsets": "162,270,393,496,606,691,797,916,997,1077,1158,1261,1366,1464,1571,1680,1780,1895,1994,2075,2176" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-km-rKH.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-km-rKH.json new file mode 100644 index 0000000..4c2f06f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-km-rKH.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-km-rKH\\values-km-rKH.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-km-rKH\\values-km-rKH.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,489,601,688,792,910,987,1064,1147,1251,1356,1456,1566,1673,1781,1904,2002,2085", + "endColumns": "102,107,122,99,111,86,103,117,76,76,82,103,104,99,109,106,107,122,97,82,100", + "endOffsets": "153,261,384,484,596,683,787,905,982,1059,1142,1246,1351,1451,1561,1668,1776,1899,1997,2080,2181" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-kn-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-kn-rIN.json new file mode 100644 index 0000000..461383a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-kn-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-kn-rIN\\values-kn-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-kn-rIN\\values-kn-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,516,629,717,824,951,1028,1105,1187,1303,1414,1513,1626,1730,1844,1970,2070,2152", + "endColumns": "117,107,122,111,112,87,106,126,76,76,81,115,110,98,112,103,113,125,99,81,100", + "endOffsets": "168,276,399,511,624,712,819,946,1023,1100,1182,1298,1409,1508,1621,1725,1839,1965,2065,2147,2248" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json new file mode 100644 index 0000000..a776dc5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ko\\values-ko.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ko\\values-ko.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,258,381,475,577,659,757,863,942,1018,1098,1196,1291,1386,1486,1582,1681,1796,1890,1968", + "endColumns": "94,107,122,93,101,81,97,105,78,75,79,97,94,94,99,95,98,114,93,77,100", + "endOffsets": "145,253,376,470,572,654,752,858,937,1013,1093,1191,1286,1381,1481,1577,1676,1791,1885,1963,2064" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ky-rKG.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ky-rKG.json new file mode 100644 index 0000000..dc49617 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ky-rKG.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ky-rKG\\values-ky-rKG.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ky-rKG\\values-ky-rKG.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,267,390,485,604,688,795,912,990,1069,1150,1260,1367,1465,1571,1678,1779,1903,2006,2087", + "endColumns": "103,107,122,94,118,83,106,116,77,78,80,109,106,97,105,106,100,123,102,80,100", + "endOffsets": "154,262,385,480,599,683,790,907,985,1064,1145,1255,1362,1460,1566,1673,1774,1898,2001,2082,2183" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-land.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-land.json new file mode 100644 index 0000000..1c924e0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-land.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-land\\values-land.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-land\\values-land.xml", + "from": { + "startLines": "2,3,4,5", + "startColumns": "4,4,4,4", + "startOffsets": "55,125,189,260", + "endColumns": "69,63,70,67", + "endOffsets": "120,184,255,323" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json new file mode 100644 index 0000000..e772065 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-large-v4\\values-large-v4.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-large-v4\\values-large-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10", + "startColumns": "4,4,4,4,4,4,4,4,4", + "startOffsets": "55,114,185,256,326,396,464,532,636", + "endColumns": "58,70,70,69,69,67,67,103,115", + "endOffsets": "109,180,251,321,391,459,527,631,747" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json new file mode 100644 index 0000000..1abfcd9 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ldltr-v21\\values-ldltr-v21.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ldltr-v21\\values-ldltr-v21.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "112", + "endOffsets": "163" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lo-rLA.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lo-rLA.json new file mode 100644 index 0000000..7f984f4 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lo-rLA.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lo-rLA\\values-lo-rLA.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-lo-rLA\\values-lo-rLA.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,486,593,678,783,895,972,1050,1130,1237,1334,1432,1537,1640,1744,1866,1962,2043", + "endColumns": "102,107,122,96,106,84,104,111,76,77,79,106,96,97,104,102,103,121,95,80,100", + "endOffsets": "153,261,384,481,588,673,778,890,967,1045,1125,1232,1329,1427,1532,1635,1739,1861,1957,2038,2139" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json new file mode 100644 index 0000000..bc56d15 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lt\\values-lt.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-lt\\values-lt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,171,279,402,503,616,703,812,933,1015,1096,1181,1290,1399,1499,1609,1713,1826,1956,2057,2140", + "endColumns": "115,107,122,100,112,86,108,120,81,80,84,108,108,99,109,103,112,129,100,82,100", + "endOffsets": "166,274,397,498,611,698,807,928,1010,1091,1176,1285,1394,1494,1604,1708,1821,1951,2052,2135,2236" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json new file mode 100644 index 0000000..f7da460 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-lv\\values-lv.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-lv\\values-lv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,514,623,709,813,935,1017,1099,1184,1293,1405,1504,1615,1724,1829,1948,2047,2129", + "endColumns": "119,107,122,107,108,85,103,121,81,81,84,108,111,98,110,108,104,118,98,81,100", + "endOffsets": "170,278,401,509,618,704,808,930,1012,1094,1179,1288,1400,1499,1610,1719,1824,1943,2042,2124,2225" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mk-rMK.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mk-rMK.json new file mode 100644 index 0000000..df7ce07 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mk-rMK.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mk-rMK\\values-mk-rMK.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-mk-rMK\\values-mk-rMK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,286,390,498,584,689,808,891,973,1060,1166,1273,1374,1481,1592,1696,1794,1878", + "endColumns": "107,122,103,107,85,104,118,82,81,86,105,106,100,106,110,103,97,83,100", + "endOffsets": "158,281,385,493,579,684,803,886,968,1055,1161,1268,1369,1476,1587,1691,1789,1873,1974" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ml-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ml-rIN.json new file mode 100644 index 0000000..76311d1 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ml-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ml-rIN\\values-ml-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ml-rIN\\values-ml-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,174,282,405,523,638,731,836,968,1045,1121,1203,1314,1420,1518,1632,1732,1843,1971,2072,2154", + "endColumns": "118,107,122,117,114,92,104,131,76,75,81,110,105,97,113,99,110,127,100,81,100", + "endOffsets": "169,277,400,518,633,726,831,963,1040,1116,1198,1309,1415,1513,1627,1727,1838,1966,2067,2149,2250" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mn-rMN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mn-rMN.json new file mode 100644 index 0000000..984402c --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mn-rMN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mn-rMN\\values-mn-rMN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-mn-rMN\\values-mn-rMN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,168,276,399,499,612,699,805,917,999,1081,1163,1272,1376,1473,1581,1682,1785,1907,2004,2085", + "endColumns": "112,107,122,99,112,86,105,111,81,81,81,108,103,96,107,100,102,121,96,80,100", + "endOffsets": "163,271,394,494,607,694,800,912,994,1076,1158,1267,1371,1468,1576,1677,1780,1902,1999,2080,2181" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mr-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mr-rIN.json new file mode 100644 index 0000000..9086ed0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-mr-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-mr-rIN\\values-mr-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-mr-rIN\\values-mr-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,510,617,707,808,923,1000,1078,1158,1270,1372,1468,1577,1678,1793,1916,2021,2101", + "endColumns": "117,107,122,105,106,89,100,114,76,77,79,111,101,95,108,100,114,122,104,79,100", + "endOffsets": "168,276,399,505,612,702,803,918,995,1073,1153,1265,1367,1463,1572,1673,1788,1911,2016,2096,2197" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ms-rMY.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ms-rMY.json new file mode 100644 index 0000000..6bc6f83 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ms-rMY.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ms-rMY\\values-ms-rMY.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ms-rMY\\values-ms-rMY.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,166,274,397,502,610,697,801,912,990,1069,1149,1261,1370,1467,1576,1679,1786,1908,2009,2089", + "endColumns": "110,107,122,104,107,86,103,110,77,78,79,111,108,96,108,102,106,121,100,79,100", + "endOffsets": "161,269,392,497,605,692,796,907,985,1064,1144,1256,1365,1462,1571,1674,1781,1903,2004,2084,2185" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-my-rMM.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-my-rMM.json new file mode 100644 index 0000000..6c6febc --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-my-rMM.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-my-rMM\\values-my-rMM.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-my-rMM\\values-my-rMM.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,397,502,619,712,824,952,1030,1109,1195,1318,1430,1532,1658,1769,1879,2002,2102,2186", + "endColumns": "108,107,124,104,116,92,111,127,77,78,85,122,111,101,125,110,109,122,99,83,100", + "endOffsets": "159,267,392,497,614,707,819,947,1025,1104,1190,1313,1425,1527,1653,1764,1874,1997,2097,2181,2282" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json new file mode 100644 index 0000000..5ab1f5e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-nb\\values-nb.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-nb\\values-nb.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,272,397,492,606,692,792,905,981,1057,1137,1240,1339,1435,1539,1637,1738,1854,1951,2030", + "endColumns": "107,108,124,94,113,85,99,112,75,75,79,102,98,95,103,97,100,115,96,78,100", + "endOffsets": "158,267,392,487,601,687,787,900,976,1052,1132,1235,1334,1430,1534,1632,1733,1849,1946,2025,2126" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ne-rNP.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ne-rNP.json new file mode 100644 index 0000000..eb21dfa --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ne-rNP.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ne-rNP\\values-ne-rNP.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ne-rNP\\values-ne-rNP.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,495,603,694,801,928,1022,1112,1200,1310,1426,1529,1644,1746,1861,1992,2104,2190", + "endColumns": "104,107,122,103,107,90,106,126,93,89,87,109,115,102,114,101,114,130,111,85,100", + "endOffsets": "155,263,386,490,598,689,796,923,1017,1107,1195,1305,1421,1524,1639,1741,1856,1987,2099,2185,2286" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json new file mode 100644 index 0000000..8e39284 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-night-v8\\values-night-v8.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-night-v8\\values-night-v8.xml", + "from": { + "startLines": "2,3,4,5,6,7,8", + "startColumns": "4,4,4,4,4,4,4", + "startOffsets": "55,125,209,293,389,491,593", + "endColumns": "69,83,83,95,101,101,93", + "endOffsets": "120,204,288,384,486,588,682" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json new file mode 100644 index 0000000..11de22a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-nl\\values-nl.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-nl\\values-nl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,173,281,404,509,616,702,810,930,1007,1084,1166,1277,1381,1480,1595,1708,1811,1929,2032,2114", + "endColumns": "117,107,122,104,106,85,107,119,76,76,81,110,103,98,114,112,102,117,102,81,100", + "endOffsets": "168,276,399,504,611,697,805,925,1002,1079,1161,1272,1376,1475,1590,1703,1806,1924,2027,2109,2210" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pa-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pa-rIN.json new file mode 100644 index 0000000..fa170db --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pa-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pa-rIN\\values-pa-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pa-rIN\\values-pa-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,161,269,392,497,602,688,788,901,978,1054,1133,1234,1335,1432,1541,1640,1750,1872,1972,2051", + "endColumns": "105,107,122,104,104,85,99,112,76,75,78,100,100,96,108,98,109,121,99,78,100", + "endOffsets": "156,264,387,492,597,683,783,896,973,1049,1128,1229,1330,1427,1536,1635,1745,1867,1967,2046,2147" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json new file mode 100644 index 0000000..ab16ce8 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pl\\values-pl.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pl\\values-pl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,171,279,402,504,612,698,807,926,1004,1081,1163,1272,1381,1480,1589,1700,1808,1931,2027,2109", + "endColumns": "115,107,122,101,107,85,108,118,77,76,81,108,108,98,108,110,107,122,95,81,100", + "endOffsets": "166,274,397,499,607,693,802,921,999,1076,1158,1267,1376,1475,1584,1695,1803,1926,2022,2104,2205" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-port.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-port.json new file mode 100644 index 0000000..8a6e0a7 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-port.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-port\\values-port.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-port\\values-port.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "55", + "endOffsets": "106" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json new file mode 100644 index 0000000..10338eb --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt-rBR\\values-pt-rBR.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pt-rBR\\values-pt-rBR.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", + "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", + "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json new file mode 100644 index 0000000..03a4403 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt-rPT\\values-pt-rPT.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pt-rPT\\values-pt-rPT.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,512,619,708,809,933,1017,1098,1185,1292,1404,1506,1614,1721,1828,1950,2049,2134", + "endColumns": "119,107,122,105,106,88,100,123,83,80,86,106,111,101,107,106,106,121,98,84,100", + "endOffsets": "170,278,401,507,614,703,804,928,1012,1093,1180,1287,1399,1501,1609,1716,1823,1945,2044,2129,2230" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json new file mode 100644 index 0000000..e1969be --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-pt\\values-pt.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-pt\\values-pt.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,175,283,406,512,619,708,809,927,1010,1090,1177,1284,1396,1498,1606,1713,1823,1948,2048,2133", + "endColumns": "119,107,122,105,106,88,100,117,82,79,86,106,111,101,107,106,109,124,99,84,100", + "endOffsets": "170,278,401,507,614,703,804,922,1005,1085,1172,1279,1391,1493,1601,1708,1818,1943,2043,2128,2229" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json new file mode 100644 index 0000000..6978eb8 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ro\\values-ro.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ro\\values-ro.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,176,284,407,511,624,712,824,945,1030,1112,1195,1307,1420,1520,1634,1739,1845,1966,2069,2152", + "endColumns": "120,107,122,103,112,87,111,120,84,81,82,111,112,99,113,104,105,120,102,82,100", + "endOffsets": "171,279,402,506,619,707,819,940,1025,1107,1190,1302,1415,1515,1629,1734,1840,1961,2064,2147,2248" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json new file mode 100644 index 0000000..39c757b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ru\\values-ru.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ru\\values-ru.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,170,278,401,503,615,701,806,926,1005,1083,1163,1269,1377,1475,1584,1690,1798,1934,2034,2115", + "endColumns": "114,107,122,101,111,85,104,119,78,77,79,105,107,97,108,105,107,135,99,80,100", + "endOffsets": "165,273,396,498,610,696,801,921,1000,1078,1158,1264,1372,1470,1579,1685,1793,1929,2029,2110,2211" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-si-rLK.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-si-rLK.json new file mode 100644 index 0000000..9eb6116 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-si-rLK.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-si-rLK\\values-si-rLK.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-si-rLK\\values-si-rLK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,503,610,698,803,919,1008,1095,1179,1288,1393,1491,1601,1700,1806,1927,2026,2108", + "endColumns": "109,107,122,106,106,87,104,115,88,86,83,108,104,97,109,98,105,120,98,81,100", + "endOffsets": "160,268,391,498,605,693,798,914,1003,1090,1174,1283,1388,1486,1596,1695,1801,1922,2021,2103,2204" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json new file mode 100644 index 0000000..870000a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sk\\values-sk.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sk\\values-sk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,162,270,393,493,604,690,798,916,994,1072,1156,1261,1370,1469,1575,1686,1795,1919,2017,2105", + "endColumns": "106,107,122,99,110,85,107,117,77,77,83,104,108,98,105,110,108,123,97,87,100", + "endOffsets": "157,265,388,488,599,685,793,911,989,1067,1151,1256,1365,1464,1570,1681,1790,1914,2012,2100,2201" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json new file mode 100644 index 0000000..5f6030c --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sl\\values-sl.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sl\\values-sl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,162,270,393,500,608,695,798,917,1002,1086,1170,1278,1387,1487,1600,1707,1811,1928,2025,2108", + "endColumns": "106,107,122,106,107,86,102,118,84,83,83,107,108,99,112,106,103,116,96,82,100", + "endOffsets": "157,265,388,495,603,690,793,912,997,1081,1165,1273,1382,1482,1595,1702,1806,1923,2020,2103,2204" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sq-rAL.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sq-rAL.json new file mode 100644 index 0000000..6c43520 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sq-rAL.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sq-rAL\\values-sq-rAL.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sq-rAL\\values-sq-rAL.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,500,612,699,809,932,1013,1092,1175,1281,1386,1484,1590,1693,1809,1940,2039,2120", + "endColumns": "113,107,122,99,111,86,109,122,80,78,82,105,104,97,105,102,115,130,98,80,100", + "endOffsets": "164,272,395,495,607,694,804,927,1008,1087,1170,1276,1381,1479,1585,1688,1804,1935,2034,2115,2216" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json new file mode 100644 index 0000000..b174116 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sr\\values-sr.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sr\\values-sr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,164,272,395,498,604,690,794,912,993,1073,1161,1266,1374,1475,1579,1687,1788,1916,2013,2097", + "endColumns": "108,107,122,102,105,85,103,117,80,79,87,104,107,100,103,107,100,127,96,83,100", + "endOffsets": "159,267,390,493,599,685,789,907,988,1068,1156,1261,1369,1470,1574,1682,1783,1911,2008,2092,2193" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json new file mode 100644 index 0000000..350a28c --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sv\\values-sv.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sv\\values-sv.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,161,269,392,495,606,691,793,906,982,1058,1138,1244,1344,1440,1545,1647,1749,1866,1968,2047", + "endColumns": "105,107,122,102,110,84,101,112,75,75,79,105,99,95,104,101,101,116,101,78,100", + "endOffsets": "156,264,387,490,601,686,788,901,977,1053,1133,1239,1339,1435,1540,1642,1744,1861,1963,2042,2143" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json new file mode 100644 index 0000000..2396440 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sw\\values-sw.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sw\\values-sw.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,158,266,389,487,595,685,790,907,989,1072,1154,1255,1364,1463,1570,1679,1784,1903,2000,2082", + "endColumns": "102,107,122,97,107,89,104,116,81,82,81,100,108,98,106,108,104,118,96,81,100", + "endOffsets": "153,261,384,482,590,680,785,902,984,1067,1149,1250,1359,1458,1565,1674,1779,1898,1995,2077,2178" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json new file mode 100644 index 0000000..783e956 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-sw600dp-v13\\values-sw600dp-v13.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9", + "startColumns": "4,4,4,4,4,4,4,4", + "startOffsets": "55,124,193,263,337,413,472,543", + "endColumns": "68,68,69,73,75,58,70,67", + "endOffsets": "119,188,258,332,408,467,538,606" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ta-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ta-rIN.json new file mode 100644 index 0000000..35c7373 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ta-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ta-rIN\\values-ta-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ta-rIN\\values-ta-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,505,620,709,816,942,1023,1103,1185,1287,1391,1488,1598,1700,1807,1926,2026,2106", + "endColumns": "113,107,122,104,114,88,106,125,80,79,81,101,103,96,109,101,106,118,99,79,100", + "endOffsets": "164,272,395,500,615,704,811,937,1018,1098,1180,1282,1386,1483,1593,1695,1802,1921,2021,2101,2202" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-te-rIN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-te-rIN.json new file mode 100644 index 0000000..7490395 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-te-rIN.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-te-rIN\\values-te-rIN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-te-rIN\\values-te-rIN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,509,620,710,815,940,1022,1104,1189,1302,1410,1510,1621,1723,1840,1967,2068,2151", + "endColumns": "113,107,122,108,110,89,104,124,81,81,84,112,107,99,110,101,116,126,100,82,100", + "endOffsets": "164,272,395,504,615,705,810,935,1017,1099,1184,1297,1405,1505,1616,1718,1835,1962,2063,2146,2247" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-th.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-th.json new file mode 100644 index 0000000..4094647 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-th.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-th\\values-th.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-th\\values-th.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,489,597,686,788,898,975,1053,1134,1242,1346,1444,1552,1657,1758,1874,1969,2050", + "endColumns": "104,107,122,97,107,88,101,109,76,77,80,107,103,97,107,104,100,115,94,80,100", + "endOffsets": "155,263,386,484,592,681,783,893,970,1048,1129,1237,1341,1439,1547,1652,1753,1869,1964,2045,2146" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json new file mode 100644 index 0000000..3fce2ce --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-tl\\values-tl.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-tl\\values-tl.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,174,282,405,513,630,718,824,945,1024,1102,1186,1295,1406,1507,1617,1734,1842,1965,2067,2151", + "endColumns": "118,107,122,107,116,87,105,120,78,77,83,108,110,100,109,116,107,122,101,83,100", + "endOffsets": "169,277,400,508,625,713,819,940,1019,1097,1181,1290,1401,1502,1612,1729,1837,1960,2062,2146,2247" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json new file mode 100644 index 0000000..dcb13ac --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-tr\\values-tr.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-tr\\values-tr.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,490,602,687,793,913,992,1068,1147,1254,1359,1455,1562,1664,1772,1891,1989,2068", + "endColumns": "104,107,122,98,111,84,105,119,78,75,78,106,104,95,106,101,107,118,97,78,100", + "endOffsets": "155,263,386,485,597,682,788,908,987,1063,1142,1249,1354,1450,1557,1659,1767,1886,1984,2063,2164" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json new file mode 100644 index 0000000..31de2c1 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-uk\\values-uk.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-uk\\values-uk.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,498,604,690,798,916,995,1075,1156,1262,1369,1467,1575,1681,1790,1914,2014,2095", + "endColumns": "109,107,122,101,105,85,107,117,78,79,80,105,106,97,107,105,108,123,99,80,100", + "endOffsets": "160,268,391,493,599,685,793,911,990,1070,1151,1257,1364,1462,1570,1676,1785,1909,2009,2090,2191" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ur-rPK.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ur-rPK.json new file mode 100644 index 0000000..d7928c0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-ur-rPK.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-ur-rPK\\values-ur-rPK.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-ur-rPK\\values-ur-rPK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,165,273,396,502,611,697,801,921,997,1073,1158,1266,1375,1477,1588,1688,1796,1925,2023,2103", + "endColumns": "109,107,122,105,108,85,103,119,75,75,84,107,108,101,110,99,107,128,97,79,102", + "endOffsets": "160,268,391,497,606,692,796,916,992,1068,1153,1261,1370,1472,1583,1683,1791,1920,2018,2098,2201" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-uz-rUZ.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-uz-rUZ.json new file mode 100644 index 0000000..bc25fd6 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-uz-rUZ.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-uz-rUZ\\values-uz-rUZ.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-uz-rUZ\\values-uz-rUZ.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,160,268,391,495,609,695,806,922,1002,1081,1165,1274,1381,1482,1590,1695,1802,1926,2025,2109", + "endColumns": "104,107,122,103,113,85,110,115,79,78,83,108,106,100,107,104,106,123,98,83,100", + "endOffsets": "155,263,386,490,604,690,801,917,997,1076,1160,1269,1376,1477,1585,1690,1797,1921,2020,2104,2205" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v11.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v11.json new file mode 100644 index 0000000..b1f0d92 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v11.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v11\\values-v11.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v11\\values-v11.xml", + "from": { + "startLines": "2,8,14,20,26,32,38,39,43,47,48,52,56,57,61,66,71,76,78,80,81,82,136,191", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,474,899,1327,1753,2180,2605,2694,2940,3189,3290,3542,3797,3900,4153,4561,4981,5403,5510,5639,5710,5793,9818,13986", + "endLines": "7,13,19,25,31,37,38,42,46,47,51,55,56,60,65,70,75,77,79,80,81,135,190,191", + "endColumns": "12,12,12,12,12,12,88,12,12,100,12,12,102,12,12,12,12,12,12,70,82,12,12,90", + "endOffsets": "469,894,1322,1748,2175,2600,2689,2935,3184,3285,3537,3792,3895,4148,4556,4976,5398,5505,5634,5705,5788,9813,13981,14072" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v12.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v12.json new file mode 100644 index 0000000..c4d6e0b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v12.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v12\\values-v12.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v12\\values-v12.xml", + "from": { + "startLines": "2,5,8,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,279,479,598", + "endLines": "4,7,8,9", + "endColumns": "12,12,118,94", + "endOffsets": "274,474,593,688" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v13.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v13.json new file mode 100644 index 0000000..9e77c4b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v13.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v13\\values-v13.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v13\\values-v13.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "58", + "endOffsets": "109" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v14.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v14.json new file mode 100644 index 0000000..cc38fa5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v14.json @@ -0,0 +1,45 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v14\\values-v14.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v14\\values-v14.xml", + "from": { + "startLines": "2,7,8,9,15,21,22,23,24,25,28,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,331,402,485,895,1317,1437,1569,1689,1752,1906,1969", + "endLines": "6,7,8,14,20,21,22,23,24,27,28,29", + "endColumns": "12,70,82,12,12,119,131,119,62,12,62,131", + "endOffsets": "326,397,480,890,1312,1432,1564,1684,1747,1901,1964,2096" + }, + "to": { + "startLines": "3,8,9,10,16,22,23,24,25,26,29,30", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "99,375,446,529,939,1361,1481,1613,1733,1796,1950,2013", + "endLines": "7,8,9,15,21,22,23,24,25,28,29,30", + "endColumns": "12,70,82,12,12,119,131,119,62,12,62,131", + "endOffsets": "370,441,524,934,1356,1476,1608,1728,1791,1945,2008,2140" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values-v14\\dimens.xml", + "from": { + "startLines": "4", + "startColumns": "4", + "startOffsets": "279", + "endColumns": "43", + "endOffsets": "318" + }, + "to": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "43", + "endOffsets": "94" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json new file mode 100644 index 0000000..688bf20 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v16\\values-v16.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v16\\values-v16.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "65", + "endOffsets": "116" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json new file mode 100644 index 0000000..9bb1479 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v17\\values-v17.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v17\\values-v17.xml", + "from": { + "startLines": "2,5,9,12,15,18,22,26,29,32,35,39,42,46", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,228,456,614,764,936,1164,1406,1577,1751,1920,2193,2393,2597", + "endLines": "4,8,11,14,17,21,25,28,31,34,38,41,45,49", + "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12", + "endOffsets": "223,451,609,759,931,1159,1401,1572,1746,1915,2188,2388,2592,2921" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json new file mode 100644 index 0000000..57d57f9 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v18\\values-v18.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v18\\values-v18.xml", + "from": { + "startLines": "2", + "startColumns": "4", + "startOffsets": "55", + "endColumns": "48", + "endOffsets": "99" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json new file mode 100644 index 0000000..3e629a3 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v21\\values-v21.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v21\\values-v21.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,21,23,24,25,26,28,30,31,32,33,34,36,38,40,42,44,46,47,52,54,56,57,58,60,62,63,64,65,66,67,111,114,158,161,164,166,168,170,173,175,178,179,180,183,184,185,186,187,188,191,192,194,196,198,200,204,206,207,208,209,211,215,217,219,220,221,222,223,225,226,227,237,238,239,251,263,264,265,268,271,272,275,276,279,282", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,159,223,290,354,445,548,651,756,863,972,1081,1190,1299,1408,1515,1618,1737,1892,2047,2152,2273,2374,2521,2662,2765,2884,2991,3094,3249,3420,3569,3734,3891,4042,4161,4533,4682,4831,4943,5090,5243,5390,5465,5554,5641,5742,5845,8913,9099,12179,12377,12577,12700,12823,12936,13119,13250,13451,13540,13651,13884,13985,14080,14203,14332,14449,14626,14725,14860,15003,15138,15257,15458,15577,15670,15781,15837,15944,16139,16250,16383,16478,16569,16660,16777,16916,16987,17070,17750,17807,17865,18559,19265,19384,19513,19684,19850,19979,20150,20281,20451,20626", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,20,22,23,24,25,27,29,30,31,32,33,35,37,39,41,43,45,46,51,53,55,56,57,59,61,62,63,64,65,66,110,113,157,160,163,165,167,169,172,174,177,178,179,182,183,184,185,186,187,190,191,193,195,197,199,203,205,206,207,208,210,214,216,218,219,220,221,222,224,225,226,236,237,238,250,262,263,264,267,270,271,274,275,278,281,286", + "endColumns": "103,63,66,63,90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,118,12,12,12,111,146,12,12,74,88,86,100,102,12,12,12,12,12,12,12,12,12,12,12,88,110,12,100,94,122,128,116,12,98,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,90,116,12,70,82,12,56,57,12,12,118,128,12,12,128,12,130,12,12,12", + "endOffsets": "154,218,285,349,440,543,646,751,858,967,1076,1185,1294,1403,1510,1613,1732,1887,2042,2147,2268,2369,2516,2657,2760,2879,2986,3089,3244,3415,3564,3729,3886,4037,4156,4528,4677,4826,4938,5085,5238,5385,5460,5549,5636,5737,5840,8908,9094,12174,12372,12572,12695,12818,12931,13114,13245,13446,13535,13646,13879,13980,14075,14198,14327,14444,14621,14720,14855,14998,15133,15252,15453,15572,15665,15776,15832,15939,16134,16245,16378,16473,16564,16655,16772,16911,16982,17065,17745,17802,17860,18554,19260,19379,19508,19679,19845,19974,20145,20276,20446,20621,20962" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json new file mode 100644 index 0000000..74915bf --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v22\\values-v22.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v22\\values-v22.xml", + "from": { + "startLines": "2,3,4,9", + "startColumns": "4,4,4,4", + "startOffsets": "55,130,217,553", + "endLines": "2,3,8,13", + "endColumns": "74,86,12,12", + "endOffsets": "125,212,548,896" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json new file mode 100644 index 0000000..84c8eec --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v23\\values-v23.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v23\\values-v23.xml", + "from": { + "startLines": "2,3,4,5,6,19,32,33,34,35,36", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,190,325,400,487,1277,2079,2206,2311,2426,2533", + "endLines": "2,3,4,5,18,31,32,33,34,35,36", + "endColumns": "134,134,74,86,12,12,126,104,114,106,112", + "endOffsets": "185,320,395,482,1272,2074,2201,2306,2421,2528,2641" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json new file mode 100644 index 0000000..cf67476 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v24\\values-v24.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v24\\values-v24.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,212,347,416,480,549", + "endColumns": "156,134,68,63,68,69", + "endOffsets": "207,342,411,475,544,614" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json new file mode 100644 index 0000000..17c5c77 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json @@ -0,0 +1,20 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-v25\\values-v25.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-v25\\values-v25.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,126,209,308", + "endLines": "2,3,5,7", + "endColumns": "70,82,12,12", + "endOffsets": "121,204,303,414" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json new file mode 100644 index 0000000..5f180a4 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-vi\\values-vi.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-vi\\values-vi.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,169,277,400,508,617,701,804,923,1000,1077,1161,1265,1374,1475,1580,1694,1799,1919,2018,2102", + "endColumns": "113,107,122,107,108,83,102,118,76,76,83,103,108,100,104,113,104,119,98,83,100", + "endOffsets": "164,272,395,503,612,696,799,918,995,1072,1156,1260,1369,1470,1575,1689,1794,1914,2013,2097,2198" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json new file mode 100644 index 0000000..a0bce98 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-xlarge-v4\\values-xlarge-v4.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-xlarge-v4\\values-xlarge-v4.xml", + "from": { + "startLines": "2,3,4,5,6,7", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "55,126,197,267,337,405", + "endColumns": "70,70,69,69,67,67", + "endOffsets": "121,192,262,332,400,468" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json new file mode 100644 index 0000000..a56b7b7 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json @@ -0,0 +1,43 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rCN\\values-zh-rCN.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zh-rCN\\values-zh-rCN.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,151,258,381,476,576,658,755,861,937,1013,1091,1187,1283,1378,1475,1570,1668,1780,1874,1952", + "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", + "endOffsets": "146,253,376,471,571,653,750,856,932,1008,1086,1182,1278,1373,1470,1565,1663,1775,1869,1947,2048" + }, + "to": { + "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,54,63", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "127,223,330,453,548,648,730,827,933,1009,1085,1163,1259,1355,1450,1547,1642,1740,1852,3445,3923", + "endColumns": "95,106,122,94,99,81,96,105,75,75,77,95,95,94,96,94,97,111,93,77,100", + "endOffsets": "218,325,448,543,643,725,822,928,1004,1080,1158,1254,1350,1445,1542,1637,1735,1847,1941,3518,4019" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values-zh-rCN\\strings.xml", + "from": { + "startLines": "36,35,21,13,26,5,6,7,41,42,18,27,44,48,49,45,47,11,12,23,10,38,39,17,4,24,16,15,9,46,53,54,19,32,33,20,51,50,28,30,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "1447,1413,829,470,1018,131,174,226,1655,1708,690,1062,1776,1956,2015,1825,1913,384,422,889,341,1514,1569,639,92,943,590,545,299,1873,2205,2259,735,1284,1334,783,2126,2072,1112,1208,1162", + "endColumns": "37,33,36,54,43,42,51,51,52,49,44,49,48,58,56,47,42,37,47,53,42,54,51,50,38,52,48,44,41,39,53,50,47,49,49,45,55,53,49,47,45", + "endOffsets": "1480,1442,861,520,1057,169,221,273,1703,1753,730,1107,1820,2010,2067,1868,1951,417,465,938,379,1564,1616,685,126,991,634,585,336,1908,2254,2305,778,1329,1379,824,2177,2121,1157,1251,1203" + }, + "to": { + "startLines": "2,3,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,93,1946,1983,2038,2082,2125,2177,2229,2282,2332,2377,2427,2476,2535,2592,2640,2683,2721,2769,2823,2866,2921,2973,3024,3063,3116,3165,3210,3252,3292,3346,3397,3523,3573,3623,3669,3725,3779,3829,3877", + "endColumns": "37,33,36,54,43,42,51,51,52,49,44,49,48,58,56,47,42,37,47,53,42,54,51,50,38,52,48,44,41,39,53,50,47,49,49,45,55,53,49,47,45", + "endOffsets": "88,122,1978,2033,2077,2120,2172,2224,2277,2327,2372,2422,2471,2530,2587,2635,2678,2716,2764,2818,2861,2916,2968,3019,3058,3111,3160,3205,3247,3287,3341,3392,3440,3568,3618,3664,3720,3774,3824,3872,3918" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json new file mode 100644 index 0000000..b17fb9f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rHK\\values-zh-rHK.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zh-rHK\\values-zh-rHK.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1667,1780,1874,1952", + "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,97,112,93,77,101", + "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1662,1775,1869,1947,2049" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json new file mode 100644 index 0000000..226f949 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zh-rTW\\values-zh-rTW.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zh-rTW\\values-zh-rTW.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,150,257,380,473,573,655,752,860,936,1012,1090,1186,1282,1377,1474,1569,1669,1782,1876,1954", + "endColumns": "94,106,122,92,99,81,96,107,75,75,77,95,95,94,96,94,99,112,93,77,100", + "endOffsets": "145,252,375,468,568,650,747,855,931,1007,1085,1181,1277,1372,1469,1564,1664,1777,1871,1949,2050" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json new file mode 100644 index 0000000..791417c --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json @@ -0,0 +1,19 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values-zu\\values-zu.xml", + "map": [ + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values-zu\\values-zu.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,163,271,394,501,615,703,806,933,1013,1093,1179,1283,1389,1487,1594,1700,1806,1926,2022,2103", + "endColumns": "107,107,122,106,113,87,102,126,79,79,85,103,105,97,106,105,105,119,95,80,100", + "endOffsets": "158,266,389,496,610,698,801,928,1008,1088,1174,1278,1384,1482,1589,1695,1801,1921,2017,2098,2199" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values.json new file mode 100644 index 0000000..8f5682f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/multi-v2/values.json @@ -0,0 +1,136 @@ +{ + "logs": [ + { + "outputFile": "D:\\XNote\\app\\build\\intermediates\\incremental\\mergeDebugResources\\merged.dir\\values\\values.xml", + "map": [ + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\strings.xml", + "from": { + "startLines": "36,35,21,13,26,5,6,7,41,42,18,27,44,48,49,45,47,11,12,23,10,38,39,17,4,24,16,15,9,46,53,54,19,32,33,20,51,50,28,30,29", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "1661,1626,963,522,1182,140,184,237,1892,1953,786,1232,2036,2252,2328,2097,2203,408,451,1028,359,1734,1794,726,96,1092,665,614,312,2156,2575,2638,845,1478,1537,908,2481,2408,1295,1397,1349", + "endColumns": "41,33,39,69,48,42,51,51,59,62,57,61,59,74,78,57,47,41,69,62,47,58,61,58,42,65,59,49,45,45,61,64,61,57,57,53,68,71,52,50,46", + "endOffsets": "1698,1655,998,587,1226,178,231,284,1947,2011,839,1289,2091,2322,2402,2150,2246,445,516,1086,402,1788,1851,780,134,1153,720,659,353,2197,2632,2698,902,1531,1590,957,2545,2475,1343,1443,1391" + }, + "to": { + "startLines": "337,338,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,408,409", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "33232,33274,35546,35586,35656,35705,35748,35800,35852,35912,35975,36033,36095,36155,36230,36309,36367,36415,36457,36527,36590,36638,36697,36759,36818,36861,36927,36987,37037,37083,37129,37191,37256,37371,37429,37487,37541,37610,37682,37735,37786", + "endColumns": "41,33,39,69,48,42,51,51,59,62,57,61,59,74,78,57,47,41,69,62,47,58,61,58,42,65,59,49,45,45,61,64,61,57,57,53,68,71,52,50,46", + "endOffsets": "33269,33303,35581,35651,35700,35743,35795,35847,35907,35970,36028,36090,36150,36225,36304,36362,36410,36452,36522,36585,36633,36692,36754,36813,36856,36922,36982,37032,37078,37124,37186,37251,37313,37424,37482,37536,37605,37677,37730,37781,37828" + } + }, + { + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\values\\values.xml", + "from": { + "startLines": "2,3,4,6", + "startColumns": "4,4,4,4", + "startOffsets": "55,101,148,244", + "endLines": "2,3,4,11", + "endColumns": "45,46,50,12", + "endOffsets": "96,143,194,558" + }, + "to": { + "startLines": "30,31,32,417", + "startColumns": "4,4,4,4", + "startOffsets": "2016,2062,2109,38367", + "endLines": "30,31,32,422", + "endColumns": "45,46,50,12", + "endOffsets": "2057,2104,2155,38681" + } + }, + { + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\values\\values.xml", + "from": { + "startLines": "2,14,15,16", + "startColumns": "4,4,4,4", + "startOffsets": "55,584,639,695", + "endLines": "12,14,15,19", + "endColumns": "24,54,55,12", + "endOffsets": "534,634,690,908" + }, + "to": { + "startLines": "118,411,412,1437", + "startColumns": "4,4,4,4", + "startOffsets": "15651,37904,37959,103320", + "endLines": "128,411,412,1440", + "endColumns": "24,54,55,12", + "endOffsets": "16130,37954,38010,103533" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\dimens.xml", + "from": { + "startLines": "5,6,7,8,4,3", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "344,397,451,505,291,245", + "endColumns": "51,52,52,51,51,44", + "endOffsets": "391,445,499,552,338,285" + }, + "to": { + "startLines": "316,317,318,319,320,321", + "startColumns": "4,4,4,4,4,4", + "startOffsets": "32108,32160,32213,32266,32318,32370", + "endColumns": "51,52,52,51,51,44", + "endOffsets": "32155,32208,32261,32313,32365,32410" + } + }, + { + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\values\\values.xml", + "from": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,86,87,88,89,90,91,92,93,107,108,109,112,113,114,126,127,133,134,135,136,148,149,150,151,152,153,154,181,182,188,189,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,359,360,364,368,373,379,386,390,394,399,403,407,411,415,419,423,427,431,435,439,443,447,452,456,459,463,467,471,475,479,483,487,491,495,499,503,504,505,506,509,512,515,518,522,523,524,525,526,529,531,533,535,540,541,545,551,555,556,558,569,570,574,580,584,585,586,590,617,621,622,626,654,813,835,994,1016,1043,1050,1055,1077,1082,1087,1097,1106,1115,1119,1126,1134,1141,1142,1151,1154,1157,1161,1165,1169,1172,1173,1177,1181,1191,1196,1203,1209,1210,1213,1217,1222,1224,1226,1229,1232,1234,1238,1241,1248,1251,1254,1258,1260,1264,1266,1272,1274,1278,1286,1294,1306,1312,1321,1324,1335,1338,1343,1357,1362,1404,1447,1448,1458,1467,1468,1470,1474,1477,1480,1483,1486,1490,1493,1496,1499,1503,1506,1510,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1538,1542,1543,1544,1545,1546,1550,1551,1555,1556,1558,1560,1561,1562,1563,1564,1565,1566,1568,1569,1571,1572,1574,1576,1577,1579,1580,1581,1582,1583,1584,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1598,1600,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1616,1617,1618,1619,1620,1621,1623,1627,1631,1632,1633,1634,1635,1636,1637,1638,1640,1642,1644,1646,1648,1649,1650,1651,1653,1655,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1671,1672,1673,1674,1676,1678,1679,1681,1682,1684,1686,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1701,1702,1703,1704,1706,1707,1708,1709,1710,1711,1712,1714,1716,1718,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1333,1410,1488,1594,1700,1779,1859,1916,1974,2048,2123,2188,2254,2326,2399,2466,2534,2593,2652,2711,2770,2829,2883,2937,2990,3044,3098,3152,3206,3275,3338,3427,3501,3580,3653,3727,3798,3870,3942,4015,4072,4130,4203,4277,4351,4426,4498,4571,4641,4712,6627,6731,6832,6879,7127,7319,7710,7849,8423,8743,8902,15305,15417,15578,16050,16473,17066,17287,17446,17705,18668,19107,19295,19423,19597,20378,20595,21926,22311,23684,23929,24419,24572,24641,24710,24780,24854,24930,24994,25071,25147,25224,25288,25353,25422,25499,25574,25643,25711,25788,25854,25951,26016,26085,26184,26255,26314,26372,26429,26488,26559,26631,26703,26775,26847,26914,26982,27050,27109,27172,27236,27326,27417,27477,27543,27610,27676,27746,27810,27863,27976,28034,28097,28162,28227,28302,28375,28447,28496,28557,28618,28679,28741,28805,28869,28933,28998,29061,29121,29182,29248,29307,29367,29429,29500,29560,29628,29714,29801,29891,29978,30066,30148,30231,30321,30412,30473,30534,30596,30660,30722,30783,30851,30951,31011,31077,31150,31219,31276,31328,31390,31462,31538,31595,31643,31692,31743,31777,31824,31873,31919,31951,32015,32077,32137,32207,32281,32359,32452,32522,32600,32654,32724,32809,32857,32903,32974,33052,33130,33202,33276,33350,33424,33504,33577,33646,33718,33795,33847,33920,33994,34063,34138,34212,34286,34375,34445,34498,34569,34647,34737,34825,34921,35422,35511,35758,36039,36324,36717,37194,37416,37638,37906,38133,38363,38593,38823,39053,39280,39519,39745,39990,40220,40468,40687,40970,41178,41309,41536,41782,42007,42254,42475,42720,42996,43297,43621,43912,44226,44363,44494,44599,44841,45008,45212,45420,45691,45803,45915,46020,46137,46351,46497,46637,46723,47071,47159,47389,47807,48040,48122,48220,48837,48937,49173,49597,49836,49930,50019,50256,52308,52550,52652,52889,55073,65242,66493,76761,78024,79516,80052,80382,81647,81903,82139,82686,83180,83785,83983,84563,85127,85502,85620,86158,86315,86511,86784,87040,87210,87351,87415,87697,87983,88659,88923,89261,89614,89708,89894,90200,90462,90587,90714,90953,91164,91283,91476,91653,92108,92289,92411,92670,92783,92970,93072,93516,93640,93915,94423,94919,95796,96090,96660,96809,97541,97713,98049,99107,99385,102571,105900,105962,106592,107206,107292,107405,107634,107794,107946,108117,108284,108527,108697,108870,109041,109315,109514,109719,110049,110133,110229,110325,110423,110523,110625,110727,110829,110931,111033,111133,111229,111341,111470,111593,111724,111855,111953,112067,112161,112360,112564,112633,112749,112877,112941,113145,113214,113417,113487,113627,113761,113857,113969,114069,114185,114281,114393,114533,114669,114833,114963,115121,115271,115412,115556,115691,115803,115953,116081,116209,116345,116477,116607,116737,116849,116989,117057,117130,117204,117277,117351,117497,117641,117779,117845,117935,118011,118115,118205,118307,118415,118523,118623,118703,118795,118893,119003,119081,119187,119279,119383,119493,119615,119778,119935,120015,120115,120205,120315,120409,120515,120607,120707,120819,120933,121049,121165,121259,121373,121485,121587,121707,121829,121911,122015,122135,122261,122359,122453,122541,122653,122769,122891,123003,123178,123294,123380,123472,123584,123708,123775,123901,123969,124097,124241,124369,124438,124533,124648,124761,124860,124969,125080,125191,125292,125397,125497,125627,125718,125841,125935,126047,126133,126237,126333,126408,126478,126566,126684,126788,126892,127018,127106,127214,127314,127404,127514,127598,127700,127784,127838,127902,128008,128118,128202", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,85,86,87,88,89,90,91,92,106,107,108,111,112,113,125,126,132,133,134,135,147,148,149,150,151,152,153,180,181,187,188,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,358,359,363,367,372,378,385,389,393,398,402,406,410,414,418,422,426,430,434,438,442,446,451,455,458,462,466,470,474,478,482,486,490,494,498,502,503,504,505,508,511,514,517,521,522,523,524,525,528,530,532,534,539,540,544,550,554,555,557,568,569,573,579,583,584,585,589,616,620,621,625,653,812,834,993,1015,1042,1049,1054,1076,1081,1086,1096,1105,1114,1118,1125,1133,1140,1141,1150,1153,1156,1160,1164,1168,1171,1172,1176,1180,1190,1195,1202,1208,1209,1212,1216,1221,1223,1225,1228,1231,1233,1237,1240,1247,1250,1253,1257,1259,1263,1265,1271,1273,1277,1285,1293,1305,1311,1320,1323,1334,1337,1342,1356,1361,1403,1446,1447,1457,1466,1467,1469,1473,1476,1479,1482,1485,1489,1492,1495,1498,1502,1505,1509,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1537,1541,1542,1543,1544,1545,1549,1550,1554,1555,1557,1559,1560,1561,1562,1563,1564,1565,1567,1568,1570,1571,1573,1575,1576,1578,1579,1580,1581,1582,1583,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1597,1599,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1615,1616,1617,1618,1619,1620,1622,1626,1630,1631,1632,1633,1634,1635,1636,1637,1639,1641,1643,1645,1647,1648,1649,1650,1652,1654,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1670,1671,1672,1673,1675,1677,1678,1680,1681,1683,1685,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1700,1701,1702,1703,1705,1706,1707,1708,1709,1710,1711,1713,1715,1717,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733", + "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,68,62,88,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,1290,103,100,46,247,191,390,138,35,319,158,5063,111,160,35,422,83,220,158,258,177,438,187,127,173,780,216,375,384,458,244,35,152,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,56,47,48,50,33,46,48,45,31,63,61,59,69,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,68,115,127,63,12,68,12,69,12,12,95,111,99,115,95,111,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,67,72,73,72,73,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,74,69,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", + "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1405,1483,1589,1695,1774,1854,1911,1969,2043,2118,2183,2249,2321,2394,2461,2529,2588,2647,2706,2765,2824,2878,2932,2985,3039,3093,3147,3201,3270,3333,3422,3496,3575,3648,3722,3793,3865,3937,4010,4067,4125,4198,4272,4346,4421,4493,4566,4636,4707,6622,6726,6827,6874,7122,7314,7705,7844,8418,8738,8897,15300,15412,15573,16045,16468,17061,17282,17441,17700,18663,19102,19290,19418,19592,20373,20590,21921,22306,23679,23924,24414,24567,24636,24705,24775,24849,24925,24989,25066,25142,25219,25283,25348,25417,25494,25569,25638,25706,25783,25849,25946,26011,26080,26179,26250,26309,26367,26424,26483,26554,26626,26698,26770,26842,26909,26977,27045,27104,27167,27231,27321,27412,27472,27538,27605,27671,27741,27805,27858,27971,28029,28092,28157,28222,28297,28370,28442,28491,28552,28613,28674,28736,28800,28864,28928,28993,29056,29116,29177,29243,29302,29362,29424,29495,29555,29623,29709,29796,29886,29973,30061,30143,30226,30316,30407,30468,30529,30591,30655,30717,30778,30846,30946,31006,31072,31145,31214,31271,31323,31385,31457,31533,31590,31638,31687,31738,31772,31819,31868,31914,31946,32010,32072,32132,32202,32276,32354,32447,32517,32595,32649,32719,32804,32852,32898,32969,33047,33125,33197,33271,33345,33419,33499,33572,33641,33713,33790,33842,33915,33989,34058,34133,34207,34281,34370,34440,34493,34564,34642,34732,34820,34916,35417,35506,35753,36034,36319,36712,37189,37411,37633,37901,38128,38358,38588,38818,39048,39275,39514,39740,39985,40215,40463,40682,40965,41173,41304,41531,41777,42002,42249,42470,42715,42991,43292,43616,43907,44221,44358,44489,44594,44836,45003,45207,45415,45686,45798,45910,46015,46132,46346,46492,46632,46718,47066,47154,47384,47802,48035,48117,48215,48832,48932,49168,49592,49831,49925,50014,50251,52303,52545,52647,52884,55068,65237,66488,76756,78019,79511,80047,80377,81642,81898,82134,82681,83175,83780,83978,84558,85122,85497,85615,86153,86310,86506,86779,87035,87205,87346,87410,87692,87978,88654,88918,89256,89609,89703,89889,90195,90457,90582,90709,90948,91159,91278,91471,91648,92103,92284,92406,92665,92778,92965,93067,93511,93635,93910,94418,94914,95791,96085,96655,96804,97536,97708,98044,99102,99380,102566,105895,105957,106587,107201,107287,107400,107629,107789,107941,108112,108279,108522,108692,108865,109036,109310,109509,109714,110044,110128,110224,110320,110418,110518,110620,110722,110824,110926,111028,111128,111224,111336,111465,111588,111719,111850,111948,112062,112156,112355,112559,112628,112744,112872,112936,113140,113209,113412,113482,113622,113756,113852,113964,114064,114180,114276,114388,114528,114664,114828,114958,115116,115266,115407,115551,115686,115798,115948,116076,116204,116340,116472,116602,116732,116844,116984,117052,117125,117199,117272,117346,117492,117636,117774,117840,117930,118006,118110,118200,118302,118410,118518,118618,118698,118790,118888,118998,119076,119182,119274,119378,119488,119610,119773,119930,120010,120110,120200,120310,120404,120510,120602,120702,120814,120928,121044,121160,121254,121368,121480,121582,121702,121824,121906,122010,122130,122256,122354,122448,122536,122648,122764,122886,122998,123173,123289,123375,123467,123579,123703,123770,123896,123964,124092,124236,124364,124433,124528,124643,124756,124855,124964,125075,125186,125287,125392,125492,125622,125713,125836,125930,126042,126128,126232,126328,126403,126473,126561,126679,126783,126887,127013,127101,127209,127309,127399,127509,127593,127695,127779,127833,127897,128003,128113,128197,128317" + }, + "to": { + "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,75,91,92,93,94,95,96,97,98,112,113,114,117,129,130,142,143,149,150,151,152,164,165,166,167,168,169,170,197,198,204,205,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,401,410,413,414,415,416,423,430,431,435,439,444,450,457,461,465,470,474,478,482,486,490,494,498,502,506,510,514,518,523,527,530,534,538,542,546,550,554,558,562,566,570,574,575,576,577,580,583,586,589,593,594,595,596,597,600,602,604,606,611,612,616,622,626,627,629,640,641,645,651,655,656,657,661,688,692,693,697,725,884,906,1065,1087,1114,1121,1126,1148,1153,1158,1168,1177,1186,1190,1197,1205,1212,1213,1222,1225,1228,1232,1236,1240,1243,1244,1248,1252,1262,1267,1274,1280,1281,1284,1288,1293,1295,1297,1300,1303,1305,1309,1312,1319,1322,1325,1329,1331,1335,1337,1343,1345,1349,1357,1365,1377,1383,1392,1395,1406,1409,1414,1428,1441,1483,1526,1527,1537,1546,1547,1549,1553,1556,1559,1562,1565,1569,1572,1575,1578,1582,1585,1589,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1617,1621,1622,1623,1624,1625,1629,1630,1634,1635,1637,1639,1640,1641,1642,1643,1644,1645,1647,1648,1650,1651,1653,1655,1656,1658,1659,1660,1661,1662,1663,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1677,1679,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1695,1696,1697,1698,1699,1700,1702,1706,1710,1711,1712,1713,1714,1715,1716,1734,1736,1738,1740,1742,1744,1745,1746,1747,1749,1751,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1767,1768,1769,1770,1772,1774,1775,1777,1778,1780,1782,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1797,1798,1799,1800,1802,1803,1804,1805,1806,1807,1808,1810,1812,1814,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829", + "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4", + "startOffsets": "55,110,155,204,245,300,358,420,488,566,647,708,783,859,936,1014,1099,1181,1257,1375,1452,1530,1636,1742,1821,1901,1958,2160,2234,2309,2374,2440,2512,2585,2652,2720,2779,2838,2897,2956,3015,3069,3123,3176,3230,3284,3338,3392,3461,3524,3613,3687,3766,3839,3913,3984,4056,4128,4201,4258,4316,4389,4463,4537,4612,4684,4757,4827,4946,6861,6965,7066,7113,7361,7553,7944,8083,8657,8977,9136,15539,16135,16296,16768,17191,17784,18005,18164,18423,19386,19825,20013,20141,20315,21096,21313,22644,23029,24402,24647,25137,25290,25359,25428,25498,25572,25648,25712,25789,25865,25942,26006,26071,26140,26217,26292,26361,26429,26506,26572,26669,26734,26803,26902,26973,27032,27090,27147,27206,27277,27349,27421,27493,27565,27632,27700,27768,27827,27890,27954,28044,28135,28195,28261,28328,28394,28464,28528,28581,28694,28752,28815,28880,28945,29020,29093,29165,29214,29275,29336,29397,29459,29523,29587,29651,29716,29779,29839,29900,29966,30025,30085,30147,30218,30278,30346,30432,30519,30609,30696,30784,30866,30949,31039,31130,31191,31252,31314,31378,31440,31501,31569,31669,31729,31795,31868,31937,31994,32046,32415,32487,32563,32620,32668,32717,32768,32802,32849,32898,32944,32976,33040,33102,33162,33308,33382,33460,33553,33623,33701,33755,33825,33910,33958,34004,34075,34153,34231,34303,34377,34451,34525,34605,34678,34747,34819,34896,34948,35021,35095,35164,35239,35313,35387,35476,37318,37833,38015,38093,38183,38271,38686,39187,39276,39523,39804,40089,40482,40959,41181,41403,41671,41898,42128,42358,42588,42818,43045,43284,43510,43755,43985,44233,44452,44735,44943,45074,45301,45547,45772,46019,46240,46485,46761,47062,47386,47677,47991,48128,48259,48364,48606,48773,48977,49185,49456,49568,49680,49785,49902,50116,50262,50402,50488,50836,50924,51154,51572,51805,51887,51985,52602,52702,52938,53362,53601,53695,53784,54021,56073,56315,56417,56654,58838,69007,70258,80526,81789,83281,83817,84147,85412,85668,85904,86451,86945,87550,87748,88328,88892,89267,89385,89923,90080,90276,90549,90805,90975,91116,91180,91462,91748,92424,92688,93026,93379,93473,93659,93965,94227,94352,94479,94718,94929,95048,95241,95418,95873,96054,96176,96435,96548,96735,96837,97281,97405,97680,98188,98684,99561,99855,100425,100574,101306,101478,101814,102872,103538,106724,110053,110115,110745,111359,111445,111558,111787,111947,112099,112270,112437,112680,112850,113023,113194,113468,113667,113872,114202,114286,114382,114478,114576,114676,114778,114880,114982,115084,115186,115286,115382,115494,115623,115746,115877,116008,116106,116220,116314,116513,116717,116786,116902,117030,117094,117298,117367,117570,117640,117780,117914,118010,118122,118222,118338,118434,118546,118686,118822,118986,119116,119274,119424,119565,119709,119844,119956,120106,120234,120362,120498,120630,120760,120890,121002,121142,121210,121283,121357,121430,121504,121650,121794,121932,121998,122088,122164,122268,122358,122460,122568,122676,122776,122856,122948,123046,123156,123234,123340,123432,123536,123646,123768,123931,124088,124168,124268,124358,124468,124562,124668,125498,125598,125710,125824,125940,126056,126150,126264,126376,126478,126598,126720,126802,126906,127026,127152,127250,127344,127432,127544,127660,127782,127894,128069,128185,128271,128363,128475,128599,128666,128792,128860,128988,129132,129260,129329,129424,129539,129652,129751,129860,129971,130082,130183,130288,130388,130518,130609,130732,130826,130938,131024,131128,131224,131299,131369,131457,131575,131679,131783,131909,131997,132105,132205,132295,132405,132489,132591,132675,132729,132793,132899,133009,133093", + "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,22,23,24,25,26,27,28,29,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,90,91,92,93,94,95,96,97,111,112,113,116,117,129,141,142,148,149,150,151,163,164,165,166,167,168,169,196,197,203,204,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,401,410,413,414,415,416,429,430,434,438,443,449,456,460,464,469,473,477,481,485,489,493,497,501,505,509,513,517,522,526,529,533,537,541,545,549,553,557,561,565,569,573,574,575,576,579,582,585,588,592,593,594,595,596,599,601,603,605,610,611,615,621,625,626,628,639,640,644,650,654,655,656,660,687,691,692,696,724,883,905,1064,1086,1113,1120,1125,1147,1152,1157,1167,1176,1185,1189,1196,1204,1211,1212,1221,1224,1227,1231,1235,1239,1242,1243,1247,1251,1261,1266,1273,1279,1280,1283,1287,1292,1294,1296,1299,1302,1304,1308,1311,1318,1321,1324,1328,1330,1334,1336,1342,1344,1348,1356,1364,1376,1382,1391,1394,1405,1408,1413,1427,1432,1482,1525,1526,1536,1545,1546,1548,1552,1555,1558,1561,1564,1568,1571,1574,1577,1581,1584,1588,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1616,1620,1621,1622,1623,1624,1628,1629,1633,1634,1636,1638,1639,1640,1641,1642,1643,1644,1646,1647,1649,1650,1652,1654,1655,1657,1658,1659,1660,1661,1662,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1676,1678,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1694,1695,1696,1697,1698,1699,1701,1705,1709,1710,1711,1712,1713,1714,1715,1716,1735,1737,1739,1741,1743,1744,1745,1746,1748,1750,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1766,1767,1768,1769,1771,1773,1774,1776,1777,1779,1781,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1796,1797,1798,1799,1801,1802,1803,1804,1805,1806,1807,1809,1811,1813,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829", + "endColumns": "54,44,48,40,54,57,61,67,77,80,60,74,75,76,77,84,81,75,75,76,77,105,105,78,79,56,57,73,74,64,65,71,72,66,67,58,58,58,58,58,53,53,52,53,53,53,53,68,62,88,73,78,72,73,70,71,71,72,56,57,72,73,73,74,71,72,69,70,1290,103,100,46,247,191,390,138,35,319,158,5063,111,160,35,422,83,220,158,258,177,438,187,127,173,780,216,375,384,458,244,35,152,68,68,69,73,75,63,76,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,70,58,57,56,58,70,71,71,71,71,66,67,67,58,62,63,89,90,59,65,66,65,69,63,52,112,57,62,64,64,74,72,71,48,60,60,60,61,63,63,63,64,62,59,60,65,58,59,61,70,59,67,85,86,89,86,87,81,82,89,90,60,60,61,63,61,60,67,99,59,65,72,68,56,51,61,71,75,56,47,48,50,33,46,48,45,31,63,61,59,69,73,77,92,69,77,53,69,84,47,45,70,77,77,71,73,73,73,79,72,68,71,76,51,72,73,68,74,73,73,88,69,52,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,136,130,104,12,12,12,12,12,111,111,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,88,12,12,12,101,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,63,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,61,12,12,85,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,130,130,97,113,93,12,12,68,115,127,63,12,68,12,69,12,12,95,111,99,115,95,111,12,135,12,129,12,12,140,12,134,111,149,127,127,12,131,129,129,111,139,67,72,73,72,73,12,12,12,65,89,75,103,89,101,107,107,99,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,93,105,91,12,12,12,12,12,93,113,111,12,12,12,81,103,119,125,97,93,87,111,115,121,111,12,115,85,91,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,99,12,90,122,93,12,85,103,95,74,69,87,12,12,12,12,87,107,99,89,109,83,101,83,53,63,105,109,83,119", + "endOffsets": "105,150,199,240,295,353,415,483,561,642,703,778,854,931,1009,1094,1176,1252,1328,1447,1525,1631,1737,1816,1896,1953,2011,2229,2304,2369,2435,2507,2580,2647,2715,2774,2833,2892,2951,3010,3064,3118,3171,3225,3279,3333,3387,3456,3519,3608,3682,3761,3834,3908,3979,4051,4123,4196,4253,4311,4384,4458,4532,4607,4679,4752,4822,4893,6856,6960,7061,7108,7356,7548,7939,8078,8652,8972,9131,15534,15646,16291,16763,17186,17779,18000,18159,18418,19381,19820,20008,20136,20310,21091,21308,22639,23024,24397,24642,25132,25285,25354,25423,25493,25567,25643,25707,25784,25860,25937,26001,26066,26135,26212,26287,26356,26424,26501,26567,26664,26729,26798,26897,26968,27027,27085,27142,27201,27272,27344,27416,27488,27560,27627,27695,27763,27822,27885,27949,28039,28130,28190,28256,28323,28389,28459,28523,28576,28689,28747,28810,28875,28940,29015,29088,29160,29209,29270,29331,29392,29454,29518,29582,29646,29711,29774,29834,29895,29961,30020,30080,30142,30213,30273,30341,30427,30514,30604,30691,30779,30861,30944,31034,31125,31186,31247,31309,31373,31435,31496,31564,31664,31724,31790,31863,31932,31989,32041,32103,32482,32558,32615,32663,32712,32763,32797,32844,32893,32939,32971,33035,33097,33157,33227,33377,33455,33548,33618,33696,33750,33820,33905,33953,33999,34070,34148,34226,34298,34372,34446,34520,34600,34673,34742,34814,34891,34943,35016,35090,35159,35234,35308,35382,35471,35541,37366,37899,38088,38178,38266,38362,39182,39271,39518,39799,40084,40477,40954,41176,41398,41666,41893,42123,42353,42583,42813,43040,43279,43505,43750,43980,44228,44447,44730,44938,45069,45296,45542,45767,46014,46235,46480,46756,47057,47381,47672,47986,48123,48254,48359,48601,48768,48972,49180,49451,49563,49675,49780,49897,50111,50257,50397,50483,50831,50919,51149,51567,51800,51882,51980,52597,52697,52933,53357,53596,53690,53779,54016,56068,56310,56412,56649,58833,69002,70253,80521,81784,83276,83812,84142,85407,85663,85899,86446,86940,87545,87743,88323,88887,89262,89380,89918,90075,90271,90544,90800,90970,91111,91175,91457,91743,92419,92683,93021,93374,93468,93654,93960,94222,94347,94474,94713,94924,95043,95236,95413,95868,96049,96171,96430,96543,96730,96832,97276,97400,97675,98183,98679,99556,99850,100420,100569,101301,101473,101809,102867,103145,106719,110048,110110,110740,111354,111440,111553,111782,111942,112094,112265,112432,112675,112845,113018,113189,113463,113662,113867,114197,114281,114377,114473,114571,114671,114773,114875,114977,115079,115181,115281,115377,115489,115618,115741,115872,116003,116101,116215,116309,116508,116712,116781,116897,117025,117089,117293,117362,117565,117635,117775,117909,118005,118117,118217,118333,118429,118541,118681,118817,118981,119111,119269,119419,119560,119704,119839,119951,120101,120229,120357,120493,120625,120755,120885,120997,121137,121205,121278,121352,121425,121499,121645,121789,121927,121993,122083,122159,122263,122353,122455,122563,122671,122771,122851,122943,123041,123151,123229,123335,123427,123531,123641,123763,123926,124083,124163,124263,124353,124463,124557,124663,124755,125593,125705,125819,125935,126051,126145,126259,126371,126473,126593,126715,126797,126901,127021,127147,127245,127339,127427,127539,127655,127777,127889,128064,128180,128266,128358,128470,128594,128661,128787,128855,128983,129127,129255,129324,129419,129534,129647,129746,129855,129966,130077,130178,130283,130383,130513,130604,130727,130821,130933,131019,131123,131219,131294,131364,131452,131570,131674,131778,131904,131992,132100,132200,132290,132400,132484,132586,132670,132724,132788,132894,133004,133088,133208" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\styles.xml", + "from": { + "startLines": "4,24,9,16", + "startColumns": "4,4,4,4", + "startOffsets": "105,970,324,610", + "endLines": "7,27,14,22", + "endColumns": "12,12,12,12", + "endOffsets": "273,1156,564,921" + }, + "to": { + "startLines": "1433,1717,1721,1727", + "startColumns": "4,4,4,4", + "startOffsets": "103150,124760,124948,125188", + "endLines": "1436,1720,1726,1733", + "endColumns": "12,12,12,12", + "endOffsets": "103315,124943,125183,125493" + } + }, + { + "source": "D:\\XNote\\app\\src\\main\\res\\values\\colors.xml", + "from": { + "startLines": "3,4", + "startColumns": "4,4", + "startOffsets": "138,181", + "endColumns": "41,47", + "endOffsets": "175,224" + }, + "to": { + "startLines": "21,74", + "startColumns": "4,4", + "startOffsets": "1333,4898", + "endColumns": "41,47", + "endOffsets": "1370,4941" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/blame/res/debug/single/debug.json b/src/源代码/XNote/app/build/intermediates/blame/res/debug/single/debug.json new file mode 100644 index 0000000..6821ead --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/blame/res/debug/single/debug.json @@ -0,0 +1,1894 @@ +[ + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_bar.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_mode_bar.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_green.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_green.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_secondary_text_material_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v11_abc_background_cache_hint_selector_material_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v11\\abc_background_cache_hint_selector_material_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_main_background.jpg.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\main_background.jpg" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_text_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_btn_colored_text_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg_low.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_bg_low.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_set_alarm.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\set_alarm.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_track_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_seekbar_track_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_hint_foreground_material_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_2x2_layout.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\widget_2x2_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_lines_media.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_lines_media.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_menu_overflow_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_menu_overflow_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_icon.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_icon.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_container_backgroud.xml.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\container_backgroud.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_yellow.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_yellow.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_gray.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_gray.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_switch_track.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_switch_track.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_title_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_alert_dialog_title_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_move_to_folder.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\move_to_folder.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_check_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_check_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_pink.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_pink.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel_2.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_2.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_chronometer.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_part_chronometer.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_multichoice_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\select_dialog_multichoice_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_btn_checkable.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_btn_checkable.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_pressed.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note_pressed.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_time.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_part_time.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_po_seekbar.xml.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\po_seekbar.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4_ic_launcher.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_internal_bg.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_cab_background_internal_bg.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_container.xml.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\layout\\container.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_green.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_green.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4_ic_launcher.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_thumb_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_seekbar_thumb_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_secondary_text_material_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_enter.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_popup_enter.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_deleterecords_ok_2.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok_2.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_view.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_search_view.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_seek_thumb.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_seek_thumb.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_exit.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_popup_exit.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_singlechoice_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\select_dialog_singlechoice_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_red.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_red.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ratingbar_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\raw_gestures.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\raw\\gestures" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_blue.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_blue.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_gray.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_gray.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_go_search_api_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_go_search_api_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_bg_color.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\bg_color.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_indicator_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ratingbar_indicator_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4_ic_launcher_round.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher_round.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_folder_background.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\folder_background.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_holo_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_ic_launcher_round.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher_round.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_action.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_tab_indicator_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_tab_indicator_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_text_cursor_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_text_cursor_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view_list_item.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_activity_chooser_view_list_item.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_blue.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_blue.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_top.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_out_top.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_item_background_holo_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_media_action.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_media_action.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_cat.jpg.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\cat.jpg" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_ic_launcher_round.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher_round.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_edit_text_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_edit_text_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_material_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_switch_thumb.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_switch_thumb.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_del_or_move_item_layout.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\listview_del_or_move_item_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_bg.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_dialog_material_background.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_dialog_material_background.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_search_api_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_search_api_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_ab_back_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_ab_back_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_note_bg_color.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\dialog_note_bg_color.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_input_psd.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\dialog_input_psd.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_borderless_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_borderless_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_layout_set_password.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\dialog_layout_set_password.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4_ic_launcher_round.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher_round.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_top.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_in_top.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_yellow.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_yellow.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_yellow.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_yellow.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_icon_group.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_template_icon_group.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_top_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_cab_background_top_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_select_dialog_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_select_dialog_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_buttons_background.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\buttons_background.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_media_custom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_media_custom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_tick_mark_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_seekbar_tick_mark_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_material_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_folder.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_folder.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_hint_foreground_material_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_action_bar_item_background_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\abc_action_bar_item_background_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_red.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_red.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_shrink_fade_out_from_bottom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_shrink_fade_out_from_bottom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_spinner.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_spinner.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media_custom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media_custom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_search_url_text.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_search_url_text.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel_xml.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_xml.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_imagebutton_background.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_layout_del_or_move_records.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\listview_layout_del_or_move_records.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_text_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_btn_colored_text_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_green.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_green.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_spinner.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_spinner.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_dialog_title_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_dialog_title_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_thumb.xml.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\thumb.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_alert_dialog_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_background.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\list_background.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_4x4_layout.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\widget_4x4_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_disable_only_material_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_bg.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_bg.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_po_seekbar1.xml.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\drawable\\po_seekbar1.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_support_simple_spinner_dropdown_item.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\support_simple_spinner_dropdown_item.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v16_notification_template_custom_big.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v16\\notification_template_custom_big.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_alarm_time.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\alarm_time.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\switch_thumb_material_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_btn_checkable.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_btn_checkable.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media_narrow_custom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media_narrow_custom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_2x2_layout_info.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\xml\\widget_2x2_layout_info.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_vector_test.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_vector_test.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_view_list_nav_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_bar_view_list_nav_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_in.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_fade_in.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_icon_background.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_icon_background.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action_tombstone.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_action_tombstone.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_seek_thumb.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_seek_thumb.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_imagebutton_background_2.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background_2.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_shortcut_folder.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\shortcut_folder.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_header_item_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_popup_menu_header_item_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_edittext.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_edittext.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_imagebutton_add_note.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_imagebutton_add_note.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_background.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_background.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_custom_big.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_custom_big.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_edit_text_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\abc_edit_text_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_item_layout.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\listview_item_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_custom_big.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_template_custom_big.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_borderless_text_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_export_to_text.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\export_to_text.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_grow_fade_in_from_bottom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_grow_fade_in_from_bottom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_dropdown_item_icons_2line.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_search_dropdown_item_icons_2line.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_simple.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_refresh.png.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\refresh.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_color_highlight_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_color_highlight_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_green.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_green.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_right.png.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\right.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_clear_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_clear_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_bottom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_out_bottom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_folder_title.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\edit_folder_title.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media_narrow.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media_narrow.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_add_shortcut_to_home.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\add_shortcut_to_home.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_ok_xml.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_ok_xml.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_checkbox.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_checkbox.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v11_abc_background_cache_hint_selector_material_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v11\\abc_background_cache_hint_selector_material_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_ic_launcher.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_pink.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_pink.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\switch_thumb_material_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_textfield_search_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_textfield_search_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_out.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_fade_out.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_menu_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_edittext.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_edittext.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_item_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_menu_item_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_switch_track.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_switch_track.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_detail.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\note_detail.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action_tombstone.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_action_tombstone.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_focused_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_content_include.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_content_include.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_move_out_of_folder.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\move_out_of_folder.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_blue.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_blue.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_borderless_text_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_thumb1.xml.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\drawable\\thumb1.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_media.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_media.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_blue.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_blue.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_cat1.jpg.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\cat1.jpg" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_item_background_holo_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_wrong.png.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\wrong.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_expanded_menu_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_expanded_menu_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_layout_new_folder.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\dialog_layout_new_folder.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_spinner_textfield_background_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_spinner_textfield_background_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_activity_main.xml.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\layout\\activity_main.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_share.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\share.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_default.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_default.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_tile_bg.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_tile_bg.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_pink.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_pink.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_btn_colored_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\abc_btn_colored_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4_ic_launcher.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_button_bar_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_alert_dialog_button_bar_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_voice_search_api_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_voice_search_api_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_colored_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_colored_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_index_page.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\index_page.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_icon.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\icon.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_normal.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_icon_group.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_icon_group.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_cat.jpg.flat", + "source": "D:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\cat.jpg" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_yellow.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_yellow.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_note_layout.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\layout\\widget_note_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_gray.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_gray.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_black_16dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_up_container.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_bar_up_container.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_notification_action_background.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\notification_action_background.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_light.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_holo_light.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_default.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_default.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_activity_chooser_view.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_media_cancel_action.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_media_cancel_action.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_radio_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_radio_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_deleterecords_ok.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_toolbar.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_toolbar.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_default_mtrl_shape.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_default_mtrl_shape.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_bottom.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_in_bottom.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_switch_thumb_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_switch_thumb_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23_abc_control_background_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v23\\abc_control_background_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_black_48dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_normal.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note_normal.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_gray.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_gray.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple_overlay_action_mode.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_simple_overlay_action_mode.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_title_item.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_bar_title_item.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_dark.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_disable_only_material_dark.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_green.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_green.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_4x4_layout_info.xml.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\xml\\widget_4x4_layout_info.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_item_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\select_dialog_item_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_item_layout.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_popup_menu_item_layout.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_close_item_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_mode_close_item_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_blue.9.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_blue.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_small_material.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ratingbar_small_material.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_switch_thumb.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_switch_thumb.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_white.png.flat", + "source": "D:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_white.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_36dp.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_radio.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_radio.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4_ic_launcher_round.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher_round.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_ic_launcher.png.flat", + "source": "D:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action.xml.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_action.xml" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png" + }, + { + "merged": "D:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat", + "source": "D:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png" + } +] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/AndroidManifest.xml b/src/源代码/XNote/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/AndroidManifest.xml new file mode 100644 index 0000000..8c802e0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/AndroidManifest.xml @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json b/src/源代码/XNote/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json new file mode 100644 index 0000000..8838cdb --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/bundle_manifest/debug/processDebugManifest/bundle-manifest/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"BUNDLE_MANIFEST"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.xnote.activity","split":"","minSdkVersion":"8"}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json b/src/源代码/XNote/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/compatible_screen_manifest/debug/createDebugCompatibleScreenManifests/out/output.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000..129ba9f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DL_6+MRb_AK1HjVfyeMG7vW4Fxk= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DL_6+MRb_AK1HjVfyeMG7vW4Fxk= new file mode 100644 index 0000000..6168099 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/DL_6+MRb_AK1HjVfyeMG7vW4Fxk= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/I8mfAA8oy2tC1cHEogDSVblqeCQ= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/I8mfAA8oy2tC1cHEogDSVblqeCQ= new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/I8mfAA8oy2tC1cHEogDSVblqeCQ= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ICaz1otN91rcN73MqiBiM1ZWBxA= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ICaz1otN91rcN73MqiBiM1ZWBxA= new file mode 100644 index 0000000..b63ac68 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ICaz1otN91rcN73MqiBiM1ZWBxA= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OX8YGWIo_zGP6r65E4fDDgwoTds= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OX8YGWIo_zGP6r65E4fDDgwoTds= new file mode 100644 index 0000000..10ff45a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OX8YGWIo_zGP6r65E4fDDgwoTds= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T1zPPdsRQpwgbt2l7Cl6WCF7TsI= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T1zPPdsRQpwgbt2l7Cl6WCF7TsI= new file mode 100644 index 0000000..0a79bde Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/T1zPPdsRQpwgbt2l7Cl6WCF7TsI= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X4H838zU2J2y223JJMfJeGPCq_o= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X4H838zU2J2y223JJMfJeGPCq_o= new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X4H838zU2J2y223JJMfJeGPCq_o= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XMFOFmcxmed9NtDdNfqZzF9Rtu4= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XMFOFmcxmed9NtDdNfqZzF9Rtu4= new file mode 100644 index 0000000..60472a2 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XMFOFmcxmed9NtDdNfqZzF9Rtu4= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XaDcdAKUGNjAWXrjJrMoq8kg9Tg= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XaDcdAKUGNjAWXrjJrMoq8kg9Tg= new file mode 100644 index 0000000..0ad672e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/XaDcdAKUGNjAWXrjJrMoq8kg9Tg= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bfY8HLaLYXchAeN8dAIkkaDQJpQ= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bfY8HLaLYXchAeN8dAIkkaDQJpQ= new file mode 100644 index 0000000..9ef5cb6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/bfY8HLaLYXchAeN8dAIkkaDQJpQ= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/strV07m0CJxfcldmfLYzy3ZAnBg= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/strV07m0CJxfcldmfLYzy3ZAnBg= new file mode 100644 index 0000000..e5aa4a3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/strV07m0CJxfcldmfLYzy3ZAnBg= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uXQLJ38ilDjVuuAsbk45y1Gi928= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uXQLJ38ilDjVuuAsbk45y1Gi928= new file mode 100644 index 0000000..5e2b2ad Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/uXQLJ38ilDjVuuAsbk45y1Gi928= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wodmqZ4o8ww6GMKkAykpfE5gjpw= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wodmqZ4o8ww6GMKkAykpfE5gjpw= new file mode 100644 index 0000000..c7aacc3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wodmqZ4o8ww6GMKkAykpfE5gjpw= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zf9Q64bbpBInfrGi1iYxdLO9Q7A= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zf9Q64bbpBInfrGi1iYxdLO9Q7A= new file mode 100644 index 0000000..cf84b57 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/zf9Q64bbpBInfrGi1iYxdLO9Q7A= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state new file mode 100644 index 0000000..4db3c64 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DL_6+MRb_AK1HjVfyeMG7vW4Fxk= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DL_6+MRb_AK1HjVfyeMG7vW4Fxk= new file mode 100644 index 0000000..6168099 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/DL_6+MRb_AK1HjVfyeMG7vW4Fxk= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/I8mfAA8oy2tC1cHEogDSVblqeCQ= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/I8mfAA8oy2tC1cHEogDSVblqeCQ= new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/I8mfAA8oy2tC1cHEogDSVblqeCQ= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ICaz1otN91rcN73MqiBiM1ZWBxA= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ICaz1otN91rcN73MqiBiM1ZWBxA= new file mode 100644 index 0000000..b63ac68 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ICaz1otN91rcN73MqiBiM1ZWBxA= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/OX8YGWIo_zGP6r65E4fDDgwoTds= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/OX8YGWIo_zGP6r65E4fDDgwoTds= new file mode 100644 index 0000000..10ff45a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/OX8YGWIo_zGP6r65E4fDDgwoTds= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/T1zPPdsRQpwgbt2l7Cl6WCF7TsI= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/T1zPPdsRQpwgbt2l7Cl6WCF7TsI= new file mode 100644 index 0000000..0a79bde Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/T1zPPdsRQpwgbt2l7Cl6WCF7TsI= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/X4H838zU2J2y223JJMfJeGPCq_o= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/X4H838zU2J2y223JJMfJeGPCq_o= new file mode 100644 index 0000000..15cb0ec Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/X4H838zU2J2y223JJMfJeGPCq_o= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XMFOFmcxmed9NtDdNfqZzF9Rtu4= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XMFOFmcxmed9NtDdNfqZzF9Rtu4= new file mode 100644 index 0000000..60472a2 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XMFOFmcxmed9NtDdNfqZzF9Rtu4= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XaDcdAKUGNjAWXrjJrMoq8kg9Tg= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XaDcdAKUGNjAWXrjJrMoq8kg9Tg= new file mode 100644 index 0000000..0ad672e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/XaDcdAKUGNjAWXrjJrMoq8kg9Tg= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bfY8HLaLYXchAeN8dAIkkaDQJpQ= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bfY8HLaLYXchAeN8dAIkkaDQJpQ= new file mode 100644 index 0000000..9ef5cb6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/bfY8HLaLYXchAeN8dAIkkaDQJpQ= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/strV07m0CJxfcldmfLYzy3ZAnBg= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/strV07m0CJxfcldmfLYzy3ZAnBg= new file mode 100644 index 0000000..e5aa4a3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/strV07m0CJxfcldmfLYzy3ZAnBg= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/uXQLJ38ilDjVuuAsbk45y1Gi928= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/uXQLJ38ilDjVuuAsbk45y1Gi928= new file mode 100644 index 0000000..5e2b2ad Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/uXQLJ38ilDjVuuAsbk45y1Gi928= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wodmqZ4o8ww6GMKkAykpfE5gjpw= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wodmqZ4o8ww6GMKkAykpfE5gjpw= new file mode 100644 index 0000000..c7aacc3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/wodmqZ4o8ww6GMKkAykpfE5gjpw= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/zf9Q64bbpBInfrGi1iYxdLO9Q7A= b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/zf9Q64bbpBInfrGi1iYxdLO9Q7A= new file mode 100644 index 0000000..cf84b57 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/zf9Q64bbpBInfrGi1iYxdLO9Q7A= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugAssets/merger.xml new file mode 100644 index 0000000..9856553 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000..8a5b216 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties new file mode 100644 index 0000000..8d6fc38 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,567 @@ +#Sat Jun 17 12:41:20 CST 2023 +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\drawable\\thumb1.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_thumb1.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_btn_checkable.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_btn_checkable.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\container_backgroud.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_container_backgroud.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher_round.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_ic_launcher_round.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\title_background.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\shortcut_folder.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_shortcut_folder.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\folder_background.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_folder_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_switch_thumb.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_switch_thumb.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\alarm_time.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_alarm_time.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\new_folder.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_folder.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_popup_background_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_pink.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_pink.9.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\thumb.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_thumb.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\list_background.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_voice_search_api_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_voice_search_api_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_ok_xml.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_ok_xml.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_switch_thumb_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_switch_thumb_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_gray.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_gray.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_green.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_green.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_green.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_green.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_in_top.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_top.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\select_dialog_multichoice_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_multichoice_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v11\\abc_background_cache_hint_selector_material_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v11_abc_background_cache_hint_selector_material_light.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\listview_del_or_move_item_layout.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_del_or_move_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_menu_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notify_panel_notification_icon_bg.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notify_panel_notification_icon_bg.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\select_dialog_singlechoice_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_singlechoice_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_bar_up_container.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_up_container.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\xml\\widget_4x4_layout_info.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_4x4_layout_info.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_pink.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_pink.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_xml.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel_xml.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_mode_bar.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_bar.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_xml.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel_xml.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\layout\\activity_main.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_activity_main.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_gray.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_gray.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_default_mtrl_shape.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_default_mtrl_shape.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_borderless_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_borderless_material.xml.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4_ic_launcher.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\icon.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_icon.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\switch_thumb_material_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_blue.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_blue.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\listview_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-hdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_pink.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_pink.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +D\:\\XNote\\app\\src\\main\\res\\raw\\gestures=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\raw_gestures.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_longpressed_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_longpressed_holo.9.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\right.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_right.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_note_bg_color.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_note_bg_color.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_deleterecords_ok.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_divider_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_vector_test.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_vector_test.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_text_cursor_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_text_cursor_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_template_custom_big.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_custom_big.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_green.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_green.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_fade_out.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_out.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_item_background_holo_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_light.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_2.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel_2.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_layout_new_folder.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_layout_new_folder.xml.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\cat1.jpg=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_cat1.jpg.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\icon.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_icon.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\dialog_layout_set_password.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_layout_set_password.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\listview_layout_del_or_move_records.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_layout_del_or_move_records.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_low_normal.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_normal.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_default.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_default.xml.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\widget_2x2_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_2x2_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_pink.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_pink.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\share.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_share.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_yellow.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_yellow.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v16\\notification_template_custom_big.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v16_notification_template_custom_big.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_btn_colored_borderless_text_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_borderless_text_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_switch_track.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_switch_track.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_holo_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_action.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\xml\\widget_2x2_layout_info.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_2x2_layout_info.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\abc_edit_text_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_edit_text_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_light.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\index_page.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_index_page.xml.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher_round.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4_ic_launcher_round.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\po_seekbar.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_po_seekbar.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_right_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_action_tombstone.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_action_tombstone.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_expanded_menu_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_expanded_menu_layout.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\raw\\gestures=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\raw_gestures.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_media.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_media.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_popup_background_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\po_seekbar.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_po_seekbar.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\share.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_share.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_material_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_light.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_dialog_material_background.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_dialog_material_background.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_48dp.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_red.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_red.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_colored_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_colored_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_spinner.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_spinner.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_activity_chooser_view_list_item.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view_list_item.xml.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher_round.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4_ic_launcher_round.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_edittext.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_edittext.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_longpressed_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_longpressed_holo.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_layout_set_password.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_layout_set_password.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\dialog_input_psd.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_input_psd.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_low_normal.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_normal.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\thumb.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_thumb.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\new_note_pressed.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_pressed.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_mode_close_item_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_mode_close_item_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_low_pressed.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_pressed.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\move_to_folder.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_move_to_folder.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_alert_dialog_title_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_title_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_edittext.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_edittext.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_focused_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_focused_holo.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_grow_fade_in_from_bottom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_grow_fade_in_from_bottom.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_btn_checkable.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_btn_checkable.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_popup_menu_header_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_header_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_cab_background_top_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_top_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_bg_low.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg_low.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_divider_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\list_background.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_popup_menu_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_popup_menu_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_search_url_text.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_search_url_text.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_simple.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_36dp.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_red.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_red.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_gray.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_gray.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_alert_dialog_button_bar_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_button_bar_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_blue.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_blue.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\new_note_normal.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_normal.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v23\\abc_control_background_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v23_abc_control_background_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\main_background.jpg=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_main_background.jpg.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\listview_layout_del_or_move_records.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_layout_del_or_move_records.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\export_to_text.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_export_to_text.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_left_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_divider_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher_round.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4_ic_launcher_round.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_normal.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_longpressed_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_longpressed_holo.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_normal_pressed.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal_pressed.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_pressed_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_green.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_green.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\delete.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_normal_pressed.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_normal_pressed.9.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_popup_exit.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_exit.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\edit_folder_title.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_folder_title.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_icon_background.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_icon_background.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-mdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_secondary_text_material_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_light.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_seekbar_track_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_track_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_imagebutton_add_note.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_imagebutton_add_note.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_btn_colored_text_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_text_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_half_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_half_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_arrow_drop_right_black_24dp.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_arrow_drop_right_black_24dp.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_ab_back_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_ab_back_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\switch_thumb_material_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_switch_thumb_material_light.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_secondary_text_material_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_secondary_text_material_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_pink.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_pink.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_switch_thumb.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_switch_thumb.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\cat.jpg=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_cat.jpg.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\widget_4x4_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_4x4_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_template_icon_group.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_template_icon_group.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_popup_enter.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_popup_enter.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_focused_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_focused_holo.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\listview_item_layout.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_background_transition_holo_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_spinner_textfield_background_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_spinner_textfield_background_material.xml.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\ic_launcher_round.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_ic_launcher_round.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\add_shortcut_to_home.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_add_shortcut_to_home.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_focused_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_focused_holo.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_blue.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_blue.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_select_dialog_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_select_dialog_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_white.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_white.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_folder.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_folder.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_disable_only_material_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_media_action.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_media_action.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\dialog_note_bg_color.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_note_bg_color.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\set_alarm.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_set_alarm.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_star_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_star_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_seek_thumb.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_seek_thumb.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_yellow.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_yellow.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_low_normal.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_low_normal.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_gray.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_gray.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_blue.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_blue.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\buttons_background.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_buttons_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher_round.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4_ic_launcher_round.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_yellow.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_yellow.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_search_view.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_view.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_background.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_menu_overflow_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_menu_overflow_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_shrink_fade_out_from_bottom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_shrink_fade_out_from_bottom.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_default.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_default.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_material_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_material_dark.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_yellow.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_yellow.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_pink.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_pink.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_16dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_lines_media.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_lines_media.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\new_note.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\select_dialog_item_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_select_dialog_item_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_background_transition_holo_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_background_transition_holo_light.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\alarm_time.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_alarm_time.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-mdpi-v4\\ic_launcher_round.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-mdpi-v4_ic_launcher_round.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher_round.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_ic_launcher_round.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_content_include.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_content_include.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_search_api_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_search_api_material.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\folder_background.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_folder_background.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_bg.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_bg.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_tab_indicator_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_tab_indicator_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_longpressed_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_longpressed_holo.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ab_share_pack_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ab_share_pack_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_seek_thumb.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_seek_thumb.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_hint_foreground_material_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ratingbar_indicator_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_indicator_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\note_detail.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_detail.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background_2.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_imagebutton_background_2.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_green.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_green.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_checkbox.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_checkbox.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_switch_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_search_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_search_activated_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxhdpi-v4\\cat1.jpg=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxhdpi-v4_cat1.jpg.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_normal_pressed.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal_pressed.9.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\cat.jpg=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_cat.jpg.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_48dp.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\shortcut_folder.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_shortcut_folder.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_red.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_red.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\cat.jpg=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_cat.jpg.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_off_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_off_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notify_panel_notification_icon_bg.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notify_panel_notification_icon_bg.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\widget_note_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_note_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_tint_spinner.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_tint_spinner.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\buttons_background.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_buttons_background.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\widget_note_layout.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_note_layout.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\dialog_layout_new_folder.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_layout_new_folder.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_16dp.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_deleterecords_ok.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_radio.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_radio.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_yellow.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_yellow.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_part_chronometer.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_chronometer.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_2.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_cancel_2.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_check_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\cat.jpg=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_cat.jpg.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_low_pressed.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_low_pressed.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_btn_colored_borderless_text_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_btn_colored_borderless_text_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_in_bottom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_in_bottom.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\notification_bg_low_pressed.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_notification_bg_low_pressed.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\note_detail.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_detail.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_gray.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_gray.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-hdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-hdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-mdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-mdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_blue.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_blue.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_out_bottom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_bottom.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_primary_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_primary_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_btn_colored_text_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_btn_colored_text_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_custom_big.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_custom_big.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\add_shortcut_to_home.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_add_shortcut_to_home.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_popup_background_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_imagebutton_add_note.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_imagebutton_add_note.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_yellow.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_yellow.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_divider_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_divider_mtrl_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_green.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_green.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v11\\abc_background_cache_hint_selector_material_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v11_abc_background_cache_hint_selector_material_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_color_highlight_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_color_highlight_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok_2.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_deleterecords_ok_2.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\notification_bg_normal.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_notification_bg_normal.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_commit_search_api_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_commit_search_api_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_half_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_half_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ratingbar_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\export_to_text.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_export_to_text.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_pressed_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_pressed_holo_light.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_green.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_green.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_imagebutton_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_clear_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_clear_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_seekbar_tick_mark_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_tick_mark_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_tile_bg.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_tile_bg.xml.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4_ic_launcher.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_radio_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_radio_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_primary_text_disable_only_material_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_primary_text_disable_only_material_light.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_blue.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_blue.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_gray.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_gray.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\support_simple_spinner_dropdown_item.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_support_simple_spinner_dropdown_item.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_imagebutton_background.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\notification_bg.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_notification_bg.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ratingbar_small_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ratingbar_small_material.xml.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\set_alarm.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_set_alarm.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_popup_background_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_popup_background_mtrl_mult.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_paste_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_paste_mtrl_am_alpha.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\widget_2x2_layout.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_2x2_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_search_dropdown_item_icons_2line.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_search_dropdown_item_icons_2line.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_action_tombstone.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action_tombstone.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_activity_chooser_view.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_activity_chooser_view.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media_custom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media_custom.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_search_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_search_default_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_list_selector_disabled_holo_dark.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_list_selector_disabled_holo_dark.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_005.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_005.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_star_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_star_black_36dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\notification_action_background.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_notification_action_background.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media_narrow_custom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media_narrow_custom.xml.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-hdpi-v4\\ic_launcher_round.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-hdpi-v4_ic_launcher_round.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\bg_color.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_bg_color.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_switch_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_ic_menu_copy_mtrl_am_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_ic_menu_copy_mtrl_am_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_middle_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_middle_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\drawable\\po_seekbar1.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_po_seekbar1.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\bg_color.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_bg_color.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\listview_del_or_move_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_listview_del_or_move_item_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_media_custom.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_media_custom.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_alert_dialog_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_alert_dialog_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-ldrtl-xxxhdpi-v17\\abc_spinner_mtrl_am_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-ldrtl-xxxhdpi-v17_abc_spinner_mtrl_am_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_radio_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_radio_to_on_mtrl_015.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_blue.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_blue.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_cab_background_top_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_cab_background_top_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_switch_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_switch_track_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_menu_hardkey_panel_mtrl_mult.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_menu_hardkey_panel_mtrl_mult.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\xml\\widget_4x4_layout_info.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_4x4_layout_info.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_list_selector_holo_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_list_selector_holo_light.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_gray.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_gray.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_template_big_media_narrow.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_template_big_media_narrow.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_radio_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_radio_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_part_time.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_part_time.xml.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\drawable\\thumb1.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_thumb1.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\abc_action_bar_item_background_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_action_bar_item_background_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_tab_indicator_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_tab_indicator_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_star_half_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_star_half_black_48dp.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color\\abc_hint_foreground_material_light.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color_abc_hint_foreground_material_light.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_fade_in.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_fade_in.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_check_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_item_background_holo_dark.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_item_background_holo_dark.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_dialog_title_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_dialog_title_material.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note_pressed.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_pressed.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_gray.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_gray.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_scrubber_track_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_scrubber_track_mtrl_alpha.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_red.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_red.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_textfield_activated_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_textfield_activated_mtrl_alpha.9.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\index_page.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_index_page.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\edit_folder_title.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_folder_title.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher_round.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_ic_launcher_round.png.flat +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_input_psd.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_input_psd.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background_2.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_imagebutton_background_2.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v11\\notification_media_cancel_action.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v11_notification_media_cancel_action.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\move_out_of_folder.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_move_out_of_folder.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_text_select_handle_left_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_text_select_handle_left_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_scrubber_control_to_pressed_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_scrubber_control_to_pressed_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_cab_background_internal_bg.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_cab_background_internal_bg.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_half_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_half_black_36dp.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_green.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_green.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-v21\\abc_btn_colored_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-v21_abc_btn_colored_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_btn_check_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_btn_check_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_blue.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_blue.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\drawable\\po_seekbar1.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_po_seekbar1.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_menu_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_menu_layout.xml.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xxxhdpi-v4\\ic_launcher.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xxxhdpi-v4_ic_launcher.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\right.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_right.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_black_16dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_black_16dp.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\layout\\container.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_container.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_blue.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_header_blue.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_layout.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok_2.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_deleterecords_ok_2.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00012.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00012.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_selectall_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_selectall_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_list_selector_disabled_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_list_selector_disabled_holo_light.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_ok_xml.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete_records_ok_xml.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\layout\\container.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_container.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_text_select_handle_left_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_text_select_handle_left_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_ic_star_black_48dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_ic_star_black_48dp.png.flat +D\:\\XNote\\app2\\build\\intermediates\\packaged_res\\debug\\layout\\activity_main.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_activity_main.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_pressed_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_pressed_holo_light.9.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_bg.9.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_bg.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_bar_view_list_nav_layout.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_view_list_nav_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_btn_check_to_on_mtrl_015.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_btn_check_to_on_mtrl_015.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_action_bar_title_item.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_action_bar_title_item.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_list_menu_item_icon.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_list_menu_item_icon.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxxhdpi-v4\\abc_ic_menu_cut_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxxhdpi-v4_abc_ic_menu_cut_mtrl_alpha.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\wrong.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_wrong.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_edit_text_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_edit_text_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_menu_share_mtrl_alpha.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_menu_share_mtrl_alpha.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +D\:\\XiaomiNote\\app2\\build\\intermediates\\packaged_res\\debug\\mipmap-xhdpi-v4\\ic_launcher.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\mipmap-xhdpi-v4_ic_launcher.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_green.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notes_bg_green.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_textfield_default_mtrl_alpha.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_textfield_default_mtrl_alpha.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notification_bg_normal.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notification_bg_normal.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_dark.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_dark.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_list_pressed_holo_light.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_list_pressed_holo_light.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_btn_check_to_on_mtrl_000.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_btn_check_to_on_mtrl_000.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout-v21\\notification_action.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout-v21_notification_action.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_btn_switch_to_on_mtrl_00001.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_btn_switch_to_on_mtrl_00001.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_seekbar_thumb_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_seekbar_thumb_material.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\color-v23\\abc_tint_switch_track.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\color-v23_abc_tint_switch_track.xml.flat +D\:\\XNote\\app\\src\\main\\res\\xml\\widget_2x2_layout_info.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_2x2_layout_info.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-mdpi-v4\\abc_list_focused_holo.9.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-mdpi-v4_abc_list_focused_holo.9.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xhdpi-v4\\abc_text_select_handle_middle_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xhdpi-v4_abc_text_select_handle_middle_mtrl_light.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-xxhdpi-v4\\abc_ic_star_half_black_36dp.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-xxhdpi-v4_abc_ic_star_half_black_36dp.png.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\refresh.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_refresh.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_ic_go_search_api_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_ic_go_search_api_material.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_yellow.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_yellow.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\move_out_of_folder.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_move_out_of_folder.png.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\wrong.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_wrong.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\notification_template_icon_group.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_notification_template_icon_group.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_green.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_green.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_yellow.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_big_yellow.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_simple_overlay_action_mode.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_simple_overlay_action_mode.xml.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_white.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_item_light_white.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note_normal.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_normal.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_blue.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_small_blue.png.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\main_background.jpg=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_main_background.jpg.flat +D\:\\XNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\container_backgroud.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_container_backgroud.xml.flat +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\move_to_folder.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_move_to_folder.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\layout\\abc_screen_toolbar.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_abc_screen_toolbar.xml.flat +D\:\\XiaomiNote\\captcha\\build\\intermediates\\packaged_res\\debug\\drawable\\refresh.png=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_refresh.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\abc_text_select_handle_right_mtrl_light.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_abc_text_select_handle_right_mtrl_light.png.flat +D\:\\XiaomiNote\\app\\src\\main\\res\\layout\\widget_4x4_layout.xml=D\:\\XiaomiNote\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_4x4_layout.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\anim\\abc_slide_out_top.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\anim_abc_slide_out_top.xml.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable-hdpi-v4\\notify_panel_notification_icon_bg.png=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi-v4_notify_panel_notification_icon_bg.png.flat +D\:\\Android\\.gradle\\gradle-7.4\\caches\\transforms-1\\files-1.1\\appcompat-v7-25.3.1.aar\\261e1b598b12eb615a1bbf4791b4d69d\\res\\drawable\\abc_textfield_search_material.xml=D\:\\XNote\\app\\build\\intermediates\\res\\merged\\debug\\drawable_abc_textfield_search_material.xml.flat diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml new file mode 100644 index 0000000..1afc755 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,24 @@ + + + "Navigeer tuis" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "AF" + "AAN" + "Soek …" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + "Vou in" + "Soek" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml new file mode 100644 index 0000000..750aecf --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,24 @@ + + + "ወደ መነሻ ይዳስሱ" + "%1$s፣ %2$s" + "%1$s፣ %2$s፣ %3$s" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "ጠፍቷል" + "በርቷል" + "ፈልግ…" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር ያጋሩ" + "ሰብስብ" + "ፈልግ" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 0000000..4a4a5e1 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,24 @@ + + + "التنقل إلى الشاشة الرئيسية" + "%1$s، %2$s" + "%1$s، %2$s، %3$s" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "إيقاف" + "تشغيل" + "بحث…" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "‏مشاركة مع %s" + "تصغير" + "البحث" + "+999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml new file mode 100644 index 0000000..59aa1cd --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az-rAZ/values-az-rAZ.xml @@ -0,0 +1,23 @@ + + + "Evə naviqasiya et" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Yuxarı get" + "Digər variantlar" + "Hazırdır" + "Hamısına baxın" + "Tətbiq seçin" + "DEAKTİV" + "AKTİV" + "Axtarış..." + "Sorğunu təmizlə" + "Axtarış sorğusu" + "Axtarış" + "Sorğunu göndərin" + "Səsli axtarış" + "Bununla paylaşın" + "Dağıt" + "Axtarış" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml new file mode 100644 index 0000000..05e53a7 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml @@ -0,0 +1,24 @@ + + + "Odlazak na Početnu" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Kretanje nagore" + "Još opcija" + "Gotovo" + "Prikaži sve" + "Izbor aplikacije" + "ISKLJUČI" + "UKLJUČI" + "Pretražite..." + "Brisanje upita" + "Upit za pretragu" + "Pretraga" + "Slanje upita" + "Glasovna pretraga" + "Deli sa" + "Deli sa aplikacijom %s" + "Skupi" + "Pretraži" + ">999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be-rBY/values-be-rBY.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be-rBY/values-be-rBY.xml new file mode 100644 index 0000000..1bc6dcc --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be-rBY/values-be-rBY.xml @@ -0,0 +1,24 @@ + + + "Перайсці на галоўную старонку" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Перайсці ўверх" + "Дадатковыя параметры" + "Гатова" + "Прагледзець усё" + "Выбраць праграму" + "ВЫКЛ." + "УКЛ." + "Пошук..." + "Выдалiць запыт" + "Запыт на пошук" + "Пошук" + "Адправіць запыт" + "Галасавы пошук" + "Абагуліць з" + "Абагуліць з %s" + "Згарнуць" + "Пошук" + "больш за 999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 0000000..44f7a28 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,24 @@ + + + "Придвижване към „Начало“" + "„%1$s“ – %2$s" + "„%1$s“, „%2$s“ – %3$s" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "ИЗКЛ." + "ВКЛ." + "Търсете…" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + "Свиване" + "Търсене" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml new file mode 100644 index 0000000..89f21d1 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml @@ -0,0 +1,24 @@ + + + "হোম এ নেভিগেট করুন" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "উপরের দিকে নেভিগেট করুন" + "আরো বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান বেছে নিন" + "বন্ধ" + "চালু" + "অনুসন্ধান..." + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী অনুসন্ধান করুন" + "অনুসন্ধান করুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে শেয়ার করুন" + "%s এর সাথে শেয়ার করুন" + "সঙ্কুচিত করুন" + "অনুসন্ধান করুন" + "৯৯৯+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs-rBA/values-bs-rBA.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs-rBA/values-bs-rBA.xml new file mode 100644 index 0000000..c1dd63a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs-rBA/values-bs-rBA.xml @@ -0,0 +1,24 @@ + + + "Vrati se na početnu stranicu" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigiraj prema gore" + "Više opcija" + "Završeno" + "Vidi sve" + "Odaberite aplikaciju" + "ISKLJUČI" + "UKLJUČI" + "Pretraži..." + "Obriši upit" + "Pretraži upit" + "Traži" + "Pošalji upit" + "Pretraživanje glasom" + "Podijeli sa" + "Podijeli sa %s" + "Skupi" + "Pretraži" + ">999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 0000000..d615d94 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,24 @@ + + + "Navega a la pàgina d\'inici" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "DESACTIVAT" + "ACTIVAT" + "Cerca..." + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + "Replega" + "Cerca" + "+999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 0000000..474b37e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,24 @@ + + + "Přejít na plochu" + "%1$s – %2$s" + "%1$s, %2$s – %3$s" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "VYPNUTO" + "ZAPNUTO" + "Vyhledat…" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet pomocí %s" + "Sbalit" + "Hledat" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml new file mode 100644 index 0000000..e397602 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,24 @@ + + + "Naviger hjem" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "FRA" + "TIL" + "Søg…" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Talesøgning" + "Del med" + "Del med %s" + "Skjul" + "Søg" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml new file mode 100644 index 0000000..389dcf3 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,24 @@ + + + "Zur Startseite" + "%1$s: %2$s" + "%1$s, %2$s: %3$s" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Aus" + "An" + "Suchen…" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Freigeben für %s" + "Minimieren" + "Suchen" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml new file mode 100644 index 0000000..d68df63 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,24 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ" + "ΕΝΕΡΓΟΠΟΙΗΣΗ" + "Αναζήτηση…" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + "Σύμπτυξη" + "Αναζήτηση" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml new file mode 100644 index 0000000..35ea31a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml @@ -0,0 +1,24 @@ + + + "Navigate home" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 0000000..35ea31a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,24 @@ + + + "Navigate home" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 0000000..35ea31a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,24 @@ + + + "Navigate home" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigate up" + "More options" + "Done" + "See all" + "Choose an app" + "OFF" + "ON" + "Search…" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + "Collapse" + "Search" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 0000000..6ee60b6 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,24 @@ + + + "Navegar a la página principal" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "DESACTIVADO" + "ACTIVADO" + "Buscar…" + "Eliminar la consulta" + "Consulta de búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml new file mode 100644 index 0000000..926b83b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,24 @@ + + + "Ir a la pantalla de inicio" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "NO" + "SÍ" + "Buscar…" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + "+999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml new file mode 100644 index 0000000..b4cfc01 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml @@ -0,0 +1,24 @@ + + + "Navigeerimine avaekraanile" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "VÄLJAS" + "SEES" + "Otsige …" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine kasutajaga %s" + "Ahendamine" + "Otsing" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml new file mode 100644 index 0000000..74fc58b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml @@ -0,0 +1,24 @@ + + + "Joan orri nagusira" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "DESAKTIBATUTA" + "AKTIBATUTA" + "Bilatu…" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahots bidezko bilaketa" + "Partekatu hauekin" + "Partekatu %s erabiltzailearekin" + "Tolestu" + "Bilatu" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 0000000..e77bb72 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,24 @@ + + + "پیمایش به صفحه اصلی" + "‏%1$s‏، %2$s" + "‏%1$s‏، %2$s‏، %3$s" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "تمام" + "مشاهده همه" + "انتخاب برنامه" + "خاموش" + "روشن" + "جستجو…" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی شفاهی" + "اشتراک‌گذاری با" + "‏اشتراک‌گذاری با %s" + "کوچک کردن" + "جستجو" + "۹۹۹+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 0000000..b6aa778 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,24 @@ + + + "Siirry etusivulle" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "POIS KÄYTÖSTÄ" + "KÄYTÖSSÄ" + "Haku…" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jakaminen: %s" + "Kutista" + "Haku" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 0000000..9ff50e1 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,24 @@ + + + "Revenir à l\'accueil" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Recherche en cours..." + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager" + "Partager avec %s" + "Réduire" + "Rechercher" + ">999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 0000000..1334f39 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,24 @@ + + + "Revenir à l\'accueil" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "DÉSACTIVÉ" + "ACTIVÉ" + "Rechercher…" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + "Réduire" + "Rechercher" + ">999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml new file mode 100644 index 0000000..d79bedf --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml @@ -0,0 +1,24 @@ + + + "Ir á páxina de inicio" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "DESACTIVAR" + "ACTIVAR" + "Buscar…" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca de voz" + "Compartir con" + "Compartir con %s" + "Contraer" + "Buscar" + ">999" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml new file mode 100644 index 0000000..00e9de3 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu-rIN/values-gu-rIN.xml @@ -0,0 +1,24 @@ + + + "હોમ પર નેવિગેટ કરો" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "ઉપર નેવિગેટ કરો" + "વધુ વિકલ્પો" + "થઈ ગયું" + "બધું જુઓ" + "એક ઍપ્લિકેશન પસંદ કરો" + "બંધ" + "ચાલુ" + "શોધો…" + "ક્વેરી સાફ કરો" + "શોધ ક્વેરી" + "શોધો" + "ક્વેરી સબમિટ કરો" + "વૉઇસ શોધ" + "આની સાથે શેર કરો" + "%s સાથે શેર કરો" + "સંકુચિત કરો" + "શોધો" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 0000000..e38bb90 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 0000000..d5a138e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 0000000..89057c4 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,24 @@ + + + "मुख्यपृष्ठ पर नेविगेट करें" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "ऊपर नेविगेट करें" + "अधिक विकल्प" + "पूर्ण" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "बंद" + "चालू" + "खोजा जा रहा है…" + "क्‍वेरी साफ़ करें" + "खोज क्वेरी" + "खोजें" + "क्वेरी सबमिट करें" + "ध्वनि खोज" + "इसके द्वारा साझा करें" + "%s के साथ साझा करें" + "संक्षिप्त करें" + "खोज" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 0000000..ca0de20 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,24 @@ + + + "Idi na početnu" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "ISKLJUČENO" + "UKLJUČENO" + "Pretražite…" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeljenje sa: %s" + "Sažmi" + "Pretraživanje" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 0000000..b2ebff5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,24 @@ + + + "Ugrás a főoldalra" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "KI" + "BE" + "Keresés…" + "Lekérdezés törlése" + "Keresési lekérdezés" + "Keresés" + "Lekérdezés küldése" + "Hangalapú keresés" + "Megosztás a következővel:" + "Megosztás a következővel: %s" + "Összecsukás" + "Keresés" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml new file mode 100644 index 0000000..ffaeec0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml @@ -0,0 +1,24 @@ + + + "Ուղղվել տուն" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Պատրաստ է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "ԱՆՋԱՏՎԱԾ" + "ՄԻԱՑՎԱԾ" + "Որոնում..." + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Կիսվել" + "Կիսվել %s-ի միջոցով" + "Թաքցնել" + "Որոնել" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml new file mode 100644 index 0000000..1d32fa1 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,24 @@ + + + "Navigasi ke beranda" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "NONAKTIF" + "AKTIF" + "Telusuri..." + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan dengan %s" + "Ciutkan" + "Telusuri" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml new file mode 100644 index 0000000..6cd2b46 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml @@ -0,0 +1,24 @@ + + + "Fara heim" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "SLÖKKT" + "KVEIKT" + "Leita…" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + "Minnka" + "Leita" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml new file mode 100644 index 0000000..103f40d --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,24 @@ + + + "Vai alla home page" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "OFF" + "ON" + "Cerca…" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi con %s" + "Comprimi" + "Ricerca" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 0000000..1ca9be6 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,24 @@ + + + "נווט לדף הבית" + "‏%1$s‏, %2$s" + "‏%1$s‏, %2$s‏, %3$s" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכל" + "בחר אפליקציה" + "כבוי" + "פועל" + "חפש…" + "מחק שאילתה" + "שאילתת חיפוש" + "חפש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "‏שתף עם %s" + "כווץ" + "חפש" + "‎999+‎" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 0000000..dc08b9f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,24 @@ + + + "ホームへ移動" + "%1$s、%2$s" + "%1$s、%2$s、%3$s" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "OFF" + "ON" + "検索…" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + "折りたたむ" + "検索" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml new file mode 100644 index 0000000..3f32118 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml @@ -0,0 +1,24 @@ + + + "მთავარზე ნავიგაცია" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "გამორთულია" + "ჩართულია" + "ძიება..." + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "%s-თან გაზიარება" + "აკეცვა" + "ძიება" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml new file mode 100644 index 0000000..a00d111 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml @@ -0,0 +1,24 @@ + + + "Негізгі бетте қозғалу" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Жоғары қозғалу" + "Басқа опциялар" + "Дайын" + "Барлығын көру" + "Қолданбаны таңдау" + "ӨШІРУЛІ" + "ҚОСУЛЫ" + "Іздеу…" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s бөлісу" + "Тасалау" + "Іздеу" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml new file mode 100644 index 0000000..a2dd37a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml @@ -0,0 +1,24 @@ + + + "រកមើល​ទៅ​ដើម" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "បិទ" + "បើក" + "ស្វែងរក…" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែករំលែក​ជាមួយ %s" + "បង្រួម" + "ស្វែងរក" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml new file mode 100644 index 0000000..99cdffd --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml @@ -0,0 +1,24 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಆಫ್" + "ಆನ್" + "ಹುಡುಕಿ…" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "ಸಂಕುಚಿಸು" + "ಹುಡುಕಿ" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 0000000..ca98630 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,24 @@ + + + "홈 탐색" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "사용 안함" + "사용" + "검색..." + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + "접기" + "검색" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml new file mode 100644 index 0000000..2493032 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml @@ -0,0 +1,24 @@ + + + "Үйгө багыттоо" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "ӨЧҮК" + "КҮЙҮК" + "Издөө…" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + "Жыйнап коюу" + "Издөө" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml new file mode 100644 index 0000000..b337bad --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,7 @@ + + + 48dp + 32dp + 12dp + 14dp + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 0000000..cc236eb --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,12 @@ + + + 440dp + 60% + 90% + 60% + 90% + 55% + 80% + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 0000000..7dad77f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 0000000..20d0552 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,288 @@ + + + @color/secondary_text_default_material_light + 0dp + 0dp + 12dp + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml new file mode 100644 index 0000000..d4a514a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml new file mode 100644 index 0000000..d807aae --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml @@ -0,0 +1,38 @@ + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 0000000..5bf1936 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,24 @@ + + + "Điều hướng về trang chủ" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Điều hướng lên trên" + "Thêm tùy chọn" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "TẮT" + "BẬT" + "Tìm kiếm…" + "Xóa truy vấn" + "Tìm kiếm truy vấn" + "Tìm kiếm" + "Gửi truy vấn" + "Tìm kiếm bằng giọng nói" + "Chia sẻ với" + "Chia sẻ với %s" + "Thu gọn" + "Tìm kiếm" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 0000000..b499d2c --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,9 @@ + + + 60% + 90% + 50% + 70% + 45% + 72% + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..282045d --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,65 @@ + + + 取消 + 完成 + "转到主屏幕" + "%1$s:%2$s" + "%1$s - %2$s:%3$s" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "关闭" + "开启" + "搜索…" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "通过%s分享" + "收起" + 关于 + 添加到桌面 + 设置闹钟 + XNote + XNote 2x2 + XNote 4x4 + 备份数据失败! + 备份数据成功! + 备份数据 + 字体大小 + 修改密码 + 修改密码失败! + 修改密码成功! + 清除密码 + 确认 + 删除 + 确定删除便签? + 修改文件夹名称 + 编辑便签 + 输出TXT文本失败! + 输出TXT文本成功! + 输出TXT文本 + 我的便签 + 移出文件夹 + 移进文件夹 + 新建文件夹 + 新建便签 + 密码 + 还原数据失败! + 还原数据成功! + 从SD卡还原 + "搜索" + 设置提醒日期 + 设置提醒时间 + 设置密码 + 设置密码失败! + 设置密码成功! + 分享 + 邮箱 + 短信 + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 0000000..ce0a0d3 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,24 @@ + + + "瀏覽主頁" + "%1$s:%2$s" + "%1$s (%2$s):%3$s" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "關閉" + "開啟" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "與「%s」分享" + "收合" + "搜尋" + "999 +" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 0000000..4d7b05b --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,24 @@ + + + "瀏覽首頁" + "%1$s:%2$s" + "%1$s - %2$s:%3$s" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "關閉" + "開啟" + "搜尋…" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + "收合" + "搜尋" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 0000000..679d22f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,24 @@ + + + "Zulazulela ekhaya" + "%1$s, %2$s" + "%1$s, %2$s, %3$s" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "VALIWE" + "VULIWE" + "Iyasesha..." + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana no-%s" + "Goqa" + "Sesha" + "999+" + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..5e0fcaa --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,1831 @@ + + + + + + + true + true + true + true + false + @android:color/black + #7fa87f + @android:color/black + @android:color/black + @color/material_deep_teal_200 + @color/material_deep_teal_500 + @color/material_grey_800 + @android:color/white + @color/material_grey_850 + @color/material_grey_50 + #ff000000 + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #FF4081 + #3F51B5 + #303F9F + #80bebebe + #80323232 + #ffbebebe + #ff323232 + @android:color/white + @android:color/black + #6680cbc4 + #66009688 + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #fff5f5f5 + #ffe0e0e0 + #fffafafa + #ff757575 + #ff424242 + #ff303030 + #ff212121 + #ffffffff + #ff9e9e9e + #ff424242 + @android:color/black + @color/material_grey_600 + @color/material_grey_900 + @color/material_grey_100 + #ffffffff + #de000000 + #4Dffffff + #39000000 + #33ffffff + #1f000000 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + #0000ff00 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 16dp + 72dp + 56dp + 0dp + 0dp + 4dp + 16dp + 10dp + 6dp + 40dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 720dp + 320dp + 2dp + 4dp + 4dp + 80% + 100% + 320dp + 320dp + 8dp + 8dp + 65% + 95% + 24dp + 18dp + 8dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 4dp + 48dip + 320dip + 2dp + 2dp + 20dp + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 14sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 0.30 + 0.26 + 0.26 + 0.20 + 0.12 + 0.50 + 0.38 + 0.70 + 0.54 + 32dp + 13sp + 12dp + 8dp + 64dp + 64dp + 10dp + @dimen/notification_content_margin_start + 16dp + 2dp + 3dp + 24dp + 13sp + 10dp + 5dp + 26sp + 20sp + 17sp + 14sp + 33sp + 15dp + #3333B5E5 + #0cffffff + + + + + + + + + + 220 + 150 + 127 + 999 + Cancel + OK + Navigate home + %1$s, %2$s + %1$s, %2$s, %3$s + Navigate up + More options + Done + See all + Choose an app + OFF + ON + sans-serif + sans-serif-medium + sans-serif-medium + sans-serif + sans-serif + sans-serif + sans-serif + sans-serif-light + sans-serif + sans-serif + sans-serif + sans-serif-medium + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + About + Add shortcut to Home + Set alarm + XNote + XNote 2x2 + XNote 4x4 + Backup failed! + Backup successfully! + Backup to SD card + Change font size + Change password + Change password failed! + Change password successfully! + Clear password + Confirm + Delete + Confirm to delete this notes? + Edit folder name + Edit Note + Export failed! + Export successfully! + Export TXT file + My Notes + Move out of folder + Move into folder + New Folder + New Note + Password + Restore failed! + Restore successfully! + Restore from SD card + Search + Set alarm date + Set alarm time + Set password + Set password failed! + Set password succesfully! + Share + Email + SMS + 999+ + 验证通过,耗时%d毫秒 + 验证失败,还剩%d次机会 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + "मुख्यपृष्ठ पर नेविगेट करें""%1$s, %2$s""%1$s, %2$s, %3$s""ऊपर नेविगेट करें""अधिक विकल्प""पूर्ण""सभी देखें""कोई एप्‍लिकेशन चुनें""बंद""चालू""खोजा जा रहा है…""क्‍वेरी साफ़ करें""खोज क्वेरी""खोजें""क्वेरी सबमिट करें""ध्वनि खोज""इसके द्वारा साझा करें""%s के साथ साझा करें""संक्षिप्त करें""खोज""999+""Idi na početnu""%1$s, %2$s""%1$s, %2$s, %3$s""Idi gore""Dodatne opcije""Gotovo""Prikaži sve""Odabir aplikacije""ISKLJUČENO""UKLJUČENO""Pretražite…""Izbriši upit""Upit za pretraživanje""Pretraživanje""Pošalji upit""Glasovno pretraživanje""Dijeljenje sa""Dijeljenje sa: %s""Sažmi""Pretraživanje""999+""Ugrás a főoldalra""%1$s, %2$s""%1$s, %2$s, %3$s""Felfelé mozgatás""További lehetőségek""Kész""Összes megtekintése""Válasszon ki egy alkalmazást""KI""BE""Keresés…""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következővel:""Megosztás a következővel: %s""Összecsukás""Keresés""999+""Ուղղվել տուն""%1$s, %2$s""%1$s, %2$s, %3$s""Ուղղվել վերև""Այլ ընտրանքներ""Պատրաստ է""Տեսնել բոլորը""Ընտրել ծրագիր""ԱՆՋԱՏՎԱԾ""ՄԻԱՑՎԱԾ""Որոնում...""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Կիսվել""Կիսվել %s-ի միջոցով""Թաքցնել""Որոնել""999+""Navigasi ke beranda""%1$s, %2$s""%1$s, %2$s, %3$s""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""NONAKTIF""AKTIF""Telusuri...""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Ciutkan""Telusuri""999+""Fara heim""%1$s, %2$s""%1$s, %2$s, %3$s""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""SLÖKKT""KVEIKT""Leita…""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Minnka""Leita""999+""Vai alla home page""%1$s, %2$s""%1$s, %2$s, %3$s""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""OFF""ON""Cerca…""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi con %s""Comprimi""Ricerca""999+""נווט לדף הבית""‏%1$s‏, %2$s""‏%1$s‏, %2$s‏, %3$s""נווט למעלה""עוד אפשרויות""בוצע""ראה הכל""בחר אפליקציה""כבוי""פועל""חפש…""מחק שאילתה""שאילתת חיפוש""חפש""שלח שאילתה""חיפוש קולי""שתף עם""‏שתף עם %s""כווץ""חפש""‎999+‎""ホームへ移動""%1$s、%2$s""%1$s、%2$s、%3$s""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""OFF""ON""検索…""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""折りたたむ""検索""999+""მთავარზე ნავიგაცია""%1$s, %2$s""%1$s, %2$s, %3$s""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""გამორთულია""ჩართულია""ძიება...""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""%s-თან გაზიარება""აკეცვა""ძიება""999+""Негізгі бетте қозғалу""%1$s, %2$s""%1$s, %2$s, %3$s""Жоғары қозғалу""Басқа опциялар""Дайын""Барлығын көру""Қолданбаны таңдау""ӨШІРУЛІ""ҚОСУЛЫ""Іздеу…""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s бөлісу""Тасалау""Іздеу""999+""រកមើល​ទៅ​ដើម""%1$s, %2$s""%1$s, %2$s, %3$s""រកមើល​ឡើងលើ""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""មើល​ទាំងអស់""ជ្រើស​កម្មវិធី​​""បិទ""បើក""ស្វែងរក…""សម្អាត​សំណួរ""ស្វែងរក​សំណួរ""ស្វែងរក""ដាក់​​​ស្នើ​សំណួរ""ការស្វែងរក​សំឡេង""ចែករំលែក​ជាមួយ""ចែករំលែក​ជាមួយ %s""បង្រួម""ស្វែងរក""999+""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""%1$s, %2$s""%1$s, %2$s, %3$s""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಆಫ್""ಆನ್""ಹುಡುಕಿ…""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕಿ""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""ಸಂಕುಚಿಸು""ಹುಡುಕಿ""999+""홈 탐색""%1$s, %2$s""%1$s, %2$s, %3$s""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""사용 안함""사용""검색...""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""접기""검색""999+""Үйгө багыттоо""%1$s, %2$s""%1$s, %2$s, %3$s""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""ӨЧҮК""КҮЙҮК""Издөө…""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү""Жыйнап коюу""Издөө""999+"48dp32dp12dp14dp440dp60%90%60%90%55%80%0px@color/secondary_text_default_material_light0dp0dp12dp"Điều hướng về trang chủ""%1$s, %2$s""%1$s, %2$s, %3$s""Điều hướng lên trên""Thêm tùy chọn""Xong""Xem tất cả""Chọn một ứng dụng""TẮT""BẬT""Tìm kiếm…""Xóa truy vấn""Tìm kiếm truy vấn""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s""Thu gọn""Tìm kiếm""999+"60%90%50%70%45%72%"转到主屏幕""%1$s:%2$s""%1$s - %2$s:%3$s""转到上一层级""更多选项""完成""查看全部""选择应用""关闭""开启""搜索…""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""收起""搜索""999+""瀏覽主頁""%1$s:%2$s""%1$s (%2$s):%3$s""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""關閉""開啟""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""收合""搜尋""999 +""瀏覽首頁""%1$s:%2$s""%1$s - %2$s:%3$s""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""關閉""開啟""搜尋…""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""收合""搜尋""999+""Zulazulela ekhaya""%1$s, %2$s""%1$s, %2$s, %3$s""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""VALIWE""VULIWE""Iyasesha...""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana no-%s""Goqa""Sesha""999+" + + + + + + + + + + Captcha验证通过,耗时%d毫秒验证失败,还剩%d次机会#FF4081#3F51B5#303F9FCaptcha#ff000000#0000ff0015dp33sp26sp20sp17sp14spMy NotesXNoteXNote 2x2XNote 4x4New NoteEdit NoteDeleteConfirm to delete this notes?Add shortcut to HomeNew FolderMove into folderExport TXT fileBackup to SD cardRestore from SD cardSet passwordAboutEdit folder nameMove out of folderSet alarmChange font sizeShareSMSEmailSet alarm dateSet alarm timeOKCancelExport failed!Export successfully!Backup failed!Backup successfully!Change passwordClear passwordPasswordConfirmChange password failed!Change password successfully!Set password succesfully!Set password failed!Restore failed!Restore successfully!0dp我的便签XNoteXNote 2x2XNote 4x4新建便签编辑便签删除确定删除便签?添加到桌面新建文件夹移进文件夹输出TXT文本备份数据从SD卡还原设置密码关于修改文件夹名称移出文件夹设置闹钟字体大小分享短信邮箱设置提醒日期设置提醒时间完成取消输出TXT文本失败!输出TXT文本成功!备份数据失败!备份数据成功!修改密码清除密码密码确认修改密码失败!修改密码成功!设置密码成功!设置密码失败!还原数据失败!还原数据成功! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugShaders/merger.xml b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000..8a6c493 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt new file mode 100644 index 0000000..24e3d33 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt @@ -0,0 +1,4 @@ +#Sat Jun 17 12:48:12 CST 2023 +base.0=D\:\\XNote\\app\\build\\intermediates\\transforms\\dexMerger\\debug\\0 +path.0=classes.dex +renamed.0=classes.dex diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/file-input-save-data.txt b/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/file-input-save-data.txt new file mode 100644 index 0000000..e79a1b5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/file-input-save-data.txt @@ -0,0 +1,7 @@ +#Internal package file, do not edit. +#Sat Jun 17 12:48:12 CST 2023 +0.baseType=DIRECTORY +0.base=D\:\\XNote\\app\\build\\intermediates\\transforms\\dexMerger\\debug\\0 +0.path=classes.dex +0.set=DEX +count=1 diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/F3gmeoX+qFJOr8vGvu4Lvj0V0xM= b/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/F3gmeoX+qFJOr8vGvu4Lvj0V0xM= new file mode 100644 index 0000000..a35475d Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/F3gmeoX+qFJOr8vGvu4Lvj0V0xM= differ diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebugAssets/merger.xml b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000..210a13f --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000..16d4c4a --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,67 @@ +#Wed Jun 07 13:12:40 CST 2023 +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\move_to_folder.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\move_to_folder.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_gray.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_header_gray.9.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_pink.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_header_pink.9.png +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_input_psd.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\dialog_input_psd.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\shortcut_folder.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\shortcut_folder.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_pink.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\item_light_pink.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_gray.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_big_gray.png +D\:\\XNote\\app\\src\\main\\res\\layout\\widget_4x4_layout.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\widget_4x4_layout.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background_2.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\imagebutton_background_2.png +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_layout_set_password.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\dialog_layout_set_password.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_gray.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_small_gray.png +D\:\\XNote\\app\\src\\main\\res\\raw\\gestures=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\raw\\gestures +D\:\\XNote\\app\\src\\main\\res\\layout\\listview_del_or_move_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\listview_del_or_move_item_layout.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_blue.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\item_light_blue.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\share.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\share.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_2.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete_records_cancel_2.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\alarm_time.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\alarm_time.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_green.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\item_light_green.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\export_to_text.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\export_to_text.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel_xml.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete_records_cancel_xml.xml +D\:\\XNote\\app\\src\\main\\res\\layout\\index_page.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\index_page.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_folder.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\new_folder.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_blue.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_big_blue.png +D\:\\XNote\\app\\src\\main\\res\\layout\\set_alarm.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\set_alarm.xml +D\:\\XNote\\app\\src\\main\\res\\xml\\widget_4x4_layout_info.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\xml\\widget_4x4_layout_info.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\new_note.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\new_note.png +D\:\\XNote\\app\\src\\main\\res\\layout\\widget_note_layout.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\widget_note_layout.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\folder_background.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\folder_background.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_red.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_small_red.png +D\:\\XNote\\app\\src\\main\\res\\layout\\widget_2x2_layout.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\widget_2x2_layout.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\bg_color.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\bg_color.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_white.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\item_light_white.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\move_out_of_folder.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\move_out_of_folder.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_blue.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_small_blue.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete.png +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_note_bg_color.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\dialog_note_bg_color.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_yellow.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_small_yellow.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_blue.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_bg_blue.9.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_gray.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_bg_gray.9.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\buttons_background.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\buttons_background.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_red.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_big_red.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_cancel.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete_records_cancel.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\main_background.jpg=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\main_background.jpg +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\icon.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\icon.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_pink.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_bg_pink.9.png +D\:\\XNote\\app\\src\\main\\res\\xml\\widget_2x2_layout_info.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\xml\\widget_2x2_layout_info.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\imagebutton_background.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\imagebutton_background.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_bar_imagebutton_add_note.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\title_bar_imagebutton_add_note.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\add_shortcut_to_home.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\add_shortcut_to_home.png +D\:\\XNote\\app\\src\\main\\res\\layout\\note_detail.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_detail.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\delete_records_ok_xml.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete_records_ok_xml.xml +D\:\\XNote\\app\\src\\main\\res\\layout\\listview_item_layout.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\listview_item_layout.xml +D\:\\XNote\\app\\src\\main\\res\\layout\\dialog_layout_new_folder.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\dialog_layout_new_folder.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\deleterecords_ok.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\item_light_yellow.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\item_light_yellow.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_yellow.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_header_yellow.9.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_small_green.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_small_green.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\edit_folder_title.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_folder_title.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_yellow.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_big_yellow.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\title_background.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\title_background.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_green.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_header_green.9.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\widget_big_green.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_big_green.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_header_blue.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_header_blue.9.png +D\:\\XNote\\app\\src\\main\\res\\layout\\listview_layout_del_or_move_records.xml=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\layout\\listview_layout_del_or_move_records.xml +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\notes_bg_green.9.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notes_bg_green.9.png +D\:\\XNote\\app\\src\\main\\res\\drawable-hdpi\\deleterecords_ok_2.png=D\:\\XNote\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\deleterecords_ok_2.png diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values-v14/values-v14.xml b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values-v14/values-v14.xml new file mode 100644 index 0000000..378aaaf --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values-v14/values-v14.xml @@ -0,0 +1,4 @@ + + + 0dp + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 0000000..de8a2de --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,44 @@ + + + 取消 + 完成 + 关于 + 添加到桌面 + 设置闹钟 + XNote + XNote 2x2 + XNote 4x4 + 备份数据失败! + 备份数据成功! + 备份数据 + 字体大小 + 修改密码 + 修改密码失败! + 修改密码成功! + 清除密码 + 确认 + 删除 + 确定删除便签? + 修改文件夹名称 + 编辑便签 + 输出TXT文本失败! + 输出TXT文本成功! + 输出TXT文本 + 我的便签 + 移出文件夹 + 移进文件夹 + 新建文件夹 + 新建便签 + 密码 + 还原数据失败! + 还原数据成功! + 从SD卡还原 + 设置提醒日期 + 设置提醒时间 + 设置密码 + 设置密码失败! + 设置密码成功! + 分享 + 邮箱 + 短信 + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000..da976ca --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,67 @@ + + + #ff000000 + #0000ff00 + 15dp + Cancel + OK + About + Add shortcut to Home + Set alarm + XNote + XNote 2x2 + XNote 4x4 + Backup failed! + Backup successfully! + Backup to SD card + Change font size + Change password + Change password failed! + Change password successfully! + Clear password + Confirm + Delete + Confirm to delete this notes? + Edit folder name + Edit Note + Export failed! + Export successfully! + Export TXT file + My Notes + Move out of folder + Move into folder + New Folder + New Note + Password + Restore failed! + Restore successfully! + Restore from SD card + Set alarm date + Set alarm time + Set password + Set password failed! + Set password succesfully! + Share + Email + SMS + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merger.xml b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000..467a6e6 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,18 @@ + +#ff000000#0000ff0015dpMy NotesXNoteXNote 2x2XNote 4x4New NoteEdit NoteDeleteConfirm to delete this notes?Add shortcut to HomeNew FolderMove into folderExport TXT fileBackup to SD cardRestore from SD cardSet passwordAboutEdit folder nameMove out of folderSet alarmChange font sizeShareSMSEmailSet alarm dateSet alarm timeOKCancelExport failed!Export successfully!Backup failed!Backup successfully!Change passwordClear passwordPasswordConfirmChange password failed!Change password successfully!Set password succesfully!Set password failed!Restore failed!Restore successfully!0dp我的便签XNoteXNote 2x2XNote 4x4新建便签编辑便签删除确定删除便签?添加到桌面新建文件夹移进文件夹输出TXT文本备份数据从SD卡还原设置密码关于修改文件夹名称移出文件夹设置闹钟字体大小分享短信邮箱设置提醒日期设置提醒时间完成取消输出TXT文本失败!输出TXT文本成功!备份数据失败!备份数据成功!修改密码清除密码密码确认修改密码失败!修改密码成功!设置密码成功!设置密码失败!还原数据失败!还原数据成功! \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/instant_app_manifest/debug/AndroidManifest.xml b/src/源代码/XNote/app/build/intermediates/instant_app_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000..7cb4d36 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/instant_app_manifest/debug/AndroidManifest.xml @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/instant_app_manifest/debug/output.json b/src/源代码/XNote/app/build/intermediates/instant_app_manifest/debug/output.json new file mode 100644 index 0000000..8a71b3e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/instant_app_manifest/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_APP_MANIFEST"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.xnote.activity","split":"","minSdkVersion":"8"}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/instant_run_merged_manifests/debug/processDebugManifest/instant-run/output.json b/src/源代码/XNote/app/build/intermediates/instant_run_merged_manifests/debug/processDebugManifest/instant-run/output.json new file mode 100644 index 0000000..03c2c7c --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/instant_run_merged_manifests/debug/processDebugManifest/instant-run/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"INSTANT_RUN_MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.xnote.activity","split":"","minSdkVersion":"15"}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R.class new file mode 100644 index 0000000..ca2057d Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/compat/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R.class new file mode 100644 index 0000000..f97050a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreui/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R.class new file mode 100644 index 0000000..6977635 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/coreutils/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R.class new file mode 100644 index 0000000..9671847 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/fragment/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R.class new file mode 100644 index 0000000..2a2a327 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/animated/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/animated/R.class new file mode 100644 index 0000000..d49b211 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/graphics/drawable/animated/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R.class new file mode 100644 index 0000000..6e47d51 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/mediacompat/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class new file mode 100644 index 0000000..0907cc9 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v4/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class new file mode 100644 index 0000000..5a1bd76 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$anim.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class new file mode 100644 index 0000000..bb5489e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$attr.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class new file mode 100644 index 0000000..8d54079 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$bool.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class new file mode 100644 index 0000000..5887adb Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$color.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class new file mode 100644 index 0000000..9a2ea25 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$dimen.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class new file mode 100644 index 0000000..5fda865 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$drawable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class new file mode 100644 index 0000000..77d5f76 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$id.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class new file mode 100644 index 0000000..09e6c26 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$integer.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class new file mode 100644 index 0000000..f01f2fa Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$layout.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class new file mode 100644 index 0000000..b0fd675 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$string.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class new file mode 100644 index 0000000..275d85c Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$style.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class new file mode 100644 index 0000000..06907ff Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R$styleable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class new file mode 100644 index 0000000..c2e3955 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/android/support/v7/appcompat/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$anim.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$anim.class new file mode 100644 index 0000000..1dcd73e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$anim.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$attr.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$attr.class new file mode 100644 index 0000000..bce6d1f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$attr.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$bool.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$bool.class new file mode 100644 index 0000000..c43dab6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$bool.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$color.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$color.class new file mode 100644 index 0000000..e332260 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$color.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$dimen.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$dimen.class new file mode 100644 index 0000000..6c5e490 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$dimen.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$drawable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$drawable.class new file mode 100644 index 0000000..72834ef Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$drawable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$id.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$id.class new file mode 100644 index 0000000..d17b049 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$id.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$integer.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$integer.class new file mode 100644 index 0000000..59925e8 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$integer.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$layout.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$layout.class new file mode 100644 index 0000000..37b572b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$layout.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$mipmap.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$mipmap.class new file mode 100644 index 0000000..ec6cd60 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$mipmap.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$string.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$string.class new file mode 100644 index 0000000..664efc5 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$string.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$style.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$style.class new file mode 100644 index 0000000..5bcd798 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$style.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$styleable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$styleable.class new file mode 100644 index 0000000..9bfd4ba Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R$styleable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R.class new file mode 100644 index 0000000..f32f269 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/example/cdc4512/vertifydemo/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$anim.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$anim.class new file mode 100644 index 0000000..60d40ee Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$anim.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$attr.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$attr.class new file mode 100644 index 0000000..00ff102 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$attr.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$bool.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$bool.class new file mode 100644 index 0000000..bf9e42b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$bool.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$color.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$color.class new file mode 100644 index 0000000..858a5e2 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$color.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$dimen.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$dimen.class new file mode 100644 index 0000000..36cc2d2 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$dimen.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$drawable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$drawable.class new file mode 100644 index 0000000..92f5d6a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$drawable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$id.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$id.class new file mode 100644 index 0000000..117cf21 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$id.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$integer.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$integer.class new file mode 100644 index 0000000..01550ad Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$integer.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$layout.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$layout.class new file mode 100644 index 0000000..87f06ac Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$layout.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$string.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$string.class new file mode 100644 index 0000000..f2c9848 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$string.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$style.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$style.class new file mode 100644 index 0000000..2574e48 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$style.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$styleable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$styleable.class new file mode 100644 index 0000000..5f6bc04 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R$styleable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R.class new file mode 100644 index 0000000..97e08e3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/luozm/captcha/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/BuildConfig.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/BuildConfig.class new file mode 100644 index 0000000..4f33fc6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/BuildConfig.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity$1.class new file mode 100644 index 0000000..f10b27a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity$2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity$2.class new file mode 100644 index 0000000..044ab9b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity$2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity.class new file mode 100644 index 0000000..4151b1a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/DeleteRecordsActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$1.class new file mode 100644 index 0000000..93a92d4 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$2.class new file mode 100644 index 0000000..72fa800 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$3.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$3.class new file mode 100644 index 0000000..736901d Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$3.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$4.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$4.class new file mode 100644 index 0000000..9256c20 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity$4.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity.class new file mode 100644 index 0000000..dba6448 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/FolderNotesActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$1.class new file mode 100644 index 0000000..b98050f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$10.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$10.class new file mode 100644 index 0000000..5bf5d5c Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$10.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$2.class new file mode 100644 index 0000000..b1455c8 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$3.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$3.class new file mode 100644 index 0000000..69bfbe3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$3.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$4.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$4.class new file mode 100644 index 0000000..e6fd127 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$4.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$5.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$5.class new file mode 100644 index 0000000..f5ab462 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$5.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$6.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$6.class new file mode 100644 index 0000000..76dcfb1 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$6.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$7.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$7.class new file mode 100644 index 0000000..2c4c6e6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$7.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$8.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$8.class new file mode 100644 index 0000000..b0553d0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$8.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$9.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$9.class new file mode 100644 index 0000000..2584ca1 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity$9.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity.class new file mode 100644 index 0000000..50e8f95 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MainActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity$1.class new file mode 100644 index 0000000..2c6d8b1 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity$2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity$2.class new file mode 100644 index 0000000..727d9e0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity$2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity.class new file mode 100644 index 0000000..17f63bf Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveOutOfFolderActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$1.class new file mode 100644 index 0000000..175920e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$2.class new file mode 100644 index 0000000..1766c9c Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$3.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$3.class new file mode 100644 index 0000000..841d060 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity$3.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity.class new file mode 100644 index 0000000..b03d885 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/MoveToFolderActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$1$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$1$1.class new file mode 100644 index 0000000..5a01a53 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$1$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$1.class new file mode 100644 index 0000000..6ea3633 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$10.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$10.class new file mode 100644 index 0000000..b70b2f6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$10.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$2$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$2$1.class new file mode 100644 index 0000000..524e116 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$2$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$2.class new file mode 100644 index 0000000..cf3c7db Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$3$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$3$1.class new file mode 100644 index 0000000..16abed8 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$3$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$3.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$3.class new file mode 100644 index 0000000..84b07e7 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$3.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$4.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$4.class new file mode 100644 index 0000000..acf4a49 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$4.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$5.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$5.class new file mode 100644 index 0000000..60cb15b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$5.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$6.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$6.class new file mode 100644 index 0000000..e8e5ed1 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$6.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$7.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$7.class new file mode 100644 index 0000000..3d42b59 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$7.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$8.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$8.class new file mode 100644 index 0000000..229dfb4 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$8.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$9.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$9.class new file mode 100644 index 0000000..683eee1 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity$9.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity.class new file mode 100644 index 0000000..f76ccd0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/NoteActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$anim.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$anim.class new file mode 100644 index 0000000..c61471d Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$anim.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$attr.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$attr.class new file mode 100644 index 0000000..1bf1122 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$attr.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$bool.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$bool.class new file mode 100644 index 0000000..91f7ce3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$bool.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$color.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$color.class new file mode 100644 index 0000000..36182c1 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$color.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$dimen.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$dimen.class new file mode 100644 index 0000000..5e0adca Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$dimen.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$drawable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$drawable.class new file mode 100644 index 0000000..cb6039f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$drawable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$id.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$id.class new file mode 100644 index 0000000..ea3572e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$id.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$integer.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$integer.class new file mode 100644 index 0000000..835c6f0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$integer.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$layout.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$layout.class new file mode 100644 index 0000000..15d1abb Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$layout.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$mipmap.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$mipmap.class new file mode 100644 index 0000000..5d0892f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$mipmap.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$raw.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$raw.class new file mode 100644 index 0000000..41426b0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$raw.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$string.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$string.class new file mode 100644 index 0000000..3d0e937 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$string.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$style.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$style.class new file mode 100644 index 0000000..701748a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$style.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$styleable.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$styleable.class new file mode 100644 index 0000000..36f53c2 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$styleable.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$xml.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$xml.class new file mode 100644 index 0000000..fa79fc7 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R$xml.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R.class new file mode 100644 index 0000000..c2bbe48 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/activity/R.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/adapter/ListItemView.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/adapter/ListItemView.class new file mode 100644 index 0000000..b174319 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/adapter/ListItemView.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/adapter/MyCursorAdapter.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/adapter/MyCursorAdapter.class new file mode 100644 index 0000000..cddfd38 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/adapter/MyCursorAdapter.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/alarm/AlarmReceiver.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/alarm/AlarmReceiver.class new file mode 100644 index 0000000..6ba39fa Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/alarm/AlarmReceiver.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/alarm/WakeLockOpration.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/alarm/WakeLockOpration.class new file mode 100644 index 0000000..750e211 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/alarm/WakeLockOpration.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DateTimeUtil.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DateTimeUtil.class new file mode 100644 index 0000000..58a7d72 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DateTimeUtil.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo$AppwidgetItems.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo$AppwidgetItems.class new file mode 100644 index 0000000..be9c550 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo$AppwidgetItems.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo$NoteItems.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo$NoteItems.class new file mode 100644 index 0000000..64002f5 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo$NoteItems.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo.class new file mode 100644 index 0000000..a8c1d23 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfo.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfoProvider$DatabaseHelper.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfoProvider$DatabaseHelper.class new file mode 100644 index 0000000..ca31d16 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfoProvider$DatabaseHelper.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfoProvider.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfoProvider.class new file mode 100644 index 0000000..db47434 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/database/DbInfoProvider.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/log/MyLog.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/log/MyLog.class new file mode 100644 index 0000000..f2f9637 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/log/MyLog.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2$1$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2$1$1.class new file mode 100644 index 0000000..e7abe27 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2$1$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2$1.class new file mode 100644 index 0000000..8140782 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2.class new file mode 100644 index 0000000..a80f9bb Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_2X2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4$1$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4$1$1.class new file mode 100644 index 0000000..2418272 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4$1$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4$1.class new file mode 100644 index 0000000..0d85962 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4.class new file mode 100644 index 0000000..04035e7 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/ConfigurationActivity_4X4.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity$1$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity$1$1.class new file mode 100644 index 0000000..b3904d9 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity$1$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity$1.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity$1.class new file mode 100644 index 0000000..d472624 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity$1.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity.class new file mode 100644 index 0000000..f38e3e8 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/EditWidgetNoteActivity.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/NoteWidget_2X2.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/NoteWidget_2X2.class new file mode 100644 index 0000000..72c7c27 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/NoteWidget_2X2.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/NoteWidget_4X4.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/NoteWidget_4X4.class new file mode 100644 index 0000000..509c661 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/widget/NoteWidget_4X4.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/MyDefaultHandler.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/MyDefaultHandler.class new file mode 100644 index 0000000..45e74e0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/MyDefaultHandler.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/Note.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/Note.class new file mode 100644 index 0000000..3f3b00f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/Note.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/RestoreDataFromXml.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/RestoreDataFromXml.class new file mode 100644 index 0000000..af48d95 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/RestoreDataFromXml.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/WriteTxt.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/WriteTxt.class new file mode 100644 index 0000000..19eb202 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/WriteTxt.class differ diff --git a/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/WriteXml.class b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/WriteXml.class new file mode 100644 index 0000000..a8a11e6 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes/com/xnote/xml_txt/WriteXml.class differ diff --git a/src/源代码/XNote/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/src/源代码/XNote/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000..1f5ee08 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,178 @@ +1 +2 +6 +7 D:\XNote\app\src\main\AndroidManifest.xml:7:5-43 +8 android:minSdkVersion="8" +8-->D:\XNote\app\src\main\AndroidManifest.xml:7:15-40 +9 android:targetSdkVersion="8" /> +9-->D:\XNote\app\src\main\AndroidManifest.xml:7:5-43 +10 +11 +11-->D:\XNote\app\src\main\AndroidManifest.xml:9:5-75 +11-->D:\XNote\app\src\main\AndroidManifest.xml:9:22-72 +12 +12-->D:\XNote\app\src\main\AndroidManifest.xml:10:5-68 +12-->D:\XNote\app\src\main\AndroidManifest.xml:10:22-65 +13 +14 +14-->D:\XNote\app\src\main\AndroidManifest.xml:12:5-81 +14-->D:\XNote\app\src\main\AndroidManifest.xml:12:22-78 +15 +15-->D:\XNote\app\src\main\AndroidManifest.xml:13:5-84 +15-->D:\XNote\app\src\main\AndroidManifest.xml:13:22-81 +16 +17 +17-->D:\XNote\app\src\main\AndroidManifest.xml:15:5-88 +17-->D:\XNote\app\src\main\AndroidManifest.xml:15:22-85 +18 +19 +19-->D:\XNote\app\src\main\AndroidManifest.xml:17:5-67 +19-->D:\XNote\app\src\main\AndroidManifest.xml:17:22-64 +20 +21 D:\XNote\app\src\main\AndroidManifest.xml:19:5-95:19 +22 android:debuggable="true" +23 android:icon="@drawable/icon" +23-->D:\XNote\app\src\main\AndroidManifest.xml:20:9-38 +24 android:label="@string/app_name" > +24-->D:\XNote\app\src\main\AndroidManifest.xml:21:9-41 +25 D:\XNote\app\src\main\AndroidManifest.xml:22:9-30:20 +26 android:name="com.xnote.activity.MainActivity" +26-->D:\XNote\app\src\main\AndroidManifest.xml:23:13-41 +27 android:label="@string/app_name" > +27-->D:\XNote\app\src\main\AndroidManifest.xml:24:13-45 +28 +28-->D:\XNote\app\src\main\AndroidManifest.xml:25:13-29:29 +29 +29-->D:\XNote\app\src\main\AndroidManifest.xml:26:17-69 +29-->D:\XNote\app\src\main\AndroidManifest.xml:26:25-66 +30 +31 +31-->D:\XNote\app\src\main\AndroidManifest.xml:28:17-77 +31-->D:\XNote\app\src\main\AndroidManifest.xml:28:27-74 +32 +33 +34 +35 +35-->D:\XNote\app\src\main\AndroidManifest.xml:32:9-36:20 +35-->D:\XNote\app\src\main\AndroidManifest.xml:32:19-72 +36 +36-->D:\XNote\app\src\main\AndroidManifest.xml:33:13-35:29 +37 +37-->D:\XNote\app\src\main\AndroidManifest.xml:26:17-69 +37-->D:\XNote\app\src\main\AndroidManifest.xml:26:25-66 +38 +39 +40 +40-->D:\XNote\app\src\main\AndroidManifest.xml:37:9-41:20 +40-->D:\XNote\app\src\main\AndroidManifest.xml:37:19-65 +41 +41-->D:\XNote\app\src\main\AndroidManifest.xml:33:13-35:29 +42 +42-->D:\XNote\app\src\main\AndroidManifest.xml:26:17-69 +42-->D:\XNote\app\src\main\AndroidManifest.xml:26:25-66 +43 +44 +45 +45-->D:\XNote\app\src\main\AndroidManifest.xml:42:9-76 +45-->D:\XNote\app\src\main\AndroidManifest.xml:42:19-73 +46 +46-->D:\XNote\app\src\main\AndroidManifest.xml:43:9-77 +46-->D:\XNote\app\src\main\AndroidManifest.xml:43:19-74 +47 +47-->D:\XNote\app\src\main\AndroidManifest.xml:44:9-79 +47-->D:\XNote\app\src\main\AndroidManifest.xml:44:19-76 +48 +49 D:\XNote\app\src\main\AndroidManifest.xml:46:9-49:20 +50 android:name="com.xnote.database.DbInfoProvider" +50-->D:\XNote\app\src\main\AndroidManifest.xml:47:13-61 +51 android:authorities="com.xnote.provider.DbInfo" > +51-->D:\XNote\app\src\main\AndroidManifest.xml:48:13-60 +52 +53 +54 +54-->D:\XNote\app\src\main\AndroidManifest.xml:51:9-66 +54-->D:\XNote\app\src\main\AndroidManifest.xml:51:19-63 +55 +56 D:\XNote\app\src\main\AndroidManifest.xml:53:9-63:20 +57 android:name="com.xnote.widget.NoteWidget_2X2" +57-->D:\XNote\app\src\main\AndroidManifest.xml:54:13-59 +58 android:label="@string/app_widget2x2" > +58-->D:\XNote\app\src\main\AndroidManifest.xml:55:13-50 +59 +59-->D:\XNote\app\src\main\AndroidManifest.xml:56:13-58:29 +60 +60-->D:\XNote\app\src\main\AndroidManifest.xml:57:17-84 +60-->D:\XNote\app\src\main\AndroidManifest.xml:57:25-81 +61 +62 +63 D:\XNote\app\src\main\AndroidManifest.xml:60:13-62:66 +64 android:name="android.appwidget.provider" +64-->D:\XNote\app\src\main\AndroidManifest.xml:61:17-58 +65 android:resource="@xml/widget_2x2_layout_info" /> +65-->D:\XNote\app\src\main\AndroidManifest.xml:62:17-63 +66 +67 +68 D:\XNote\app\src\main\AndroidManifest.xml:65:9-75:20 +69 android:name="com.xnote.widget.NoteWidget_4X4" +69-->D:\XNote\app\src\main\AndroidManifest.xml:66:13-59 +70 android:label="@string/app_widget4x4" > +70-->D:\XNote\app\src\main\AndroidManifest.xml:67:13-50 +71 +71-->D:\XNote\app\src\main\AndroidManifest.xml:56:13-58:29 +72 +72-->D:\XNote\app\src\main\AndroidManifest.xml:57:17-84 +72-->D:\XNote\app\src\main\AndroidManifest.xml:57:25-81 +73 +74 +75 D:\XNote\app\src\main\AndroidManifest.xml:60:13-62:66 +76 android:name="android.appwidget.provider" +76-->D:\XNote\app\src\main\AndroidManifest.xml:61:17-58 +77 android:resource="@xml/widget_4x4_layout_info" /> +77-->D:\XNote\app\src\main\AndroidManifest.xml:62:17-63 +78 +79 +80 +81 +81-->D:\XNote\app\src\main\AndroidManifest.xml:78:9-82:20 +81-->D:\XNote\app\src\main\AndroidManifest.xml:78:19-76 +82 +82-->D:\XNote\app\src\main\AndroidManifest.xml:79:13-81:29 +83 +83-->D:\XNote\app\src\main\AndroidManifest.xml:80:17-87 +83-->D:\XNote\app\src\main\AndroidManifest.xml:80:25-84 +84 +85 +86 +87 +87-->D:\XNote\app\src\main\AndroidManifest.xml:84:9-88:20 +87-->D:\XNote\app\src\main\AndroidManifest.xml:84:19-76 +88 +88-->D:\XNote\app\src\main\AndroidManifest.xml:79:13-81:29 +89 +89-->D:\XNote\app\src\main\AndroidManifest.xml:80:17-87 +89-->D:\XNote\app\src\main\AndroidManifest.xml:80:25-84 +90 +91 +92 +93 +94 +95 D:\XNote\app\src\main\AndroidManifest.xml:92:9-94:51 +96 android:name="com.xnote.widget.EditWidgetNoteActivity" +96-->D:\XNote\app\src\main\AndroidManifest.xml:93:13-67 +97 android:launchMode="singleInstance" /> +97-->D:\XNote\app\src\main\AndroidManifest.xml:94:13-48 +98 +99 +100 diff --git a/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml new file mode 100644 index 0000000..8c802e0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/AndroidManifest.xml @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/output.json b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000..1aa9adc --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.xnote.activity","split":"","minSdkVersion":"8"}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml new file mode 100644 index 0000000..24324b0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/processDebugManifest/merged/AndroidManifest.xml @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/processDebugManifest/merged/output.json b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/processDebugManifest/merged/output.json new file mode 100644 index 0000000..83965c0 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/merged_manifests/debug/processDebugManifest/merged/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.xnote.activity","split":"","minSdkVersion":"15"}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/merged_manifests/debugAndroidTest/AndroidManifest.xml b/src/源代码/XNote/app/build/intermediates/merged_manifests/debugAndroidTest/AndroidManifest.xml new file mode 100644 index 0000000..51991af --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/merged_manifests/debugAndroidTest/AndroidManifest.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/源代码/XNote/app/build/intermediates/merged_manifests/debugAndroidTest/output.json b/src/源代码/XNote/app/build/intermediates/merged_manifests/debugAndroidTest/output.json new file mode 100644 index 0000000..4ec0136 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/merged_manifests/debugAndroidTest/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":-1,"enabled":true,"outputFile":"app-debug-androidTest.apk","fullName":"debugAndroidTest","baseName":"debug-androidTest"},"path":"AndroidManifest.xml","properties":{}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json b/src/源代码/XNote/app/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json new file mode 100644 index 0000000..5875ae5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/metadata_feature_manifest/debug/processDebugManifest/metadata-feature/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"METADATA_FEATURE_MANIFEST"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-debug.apk","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{}}] \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged-classes/debug/classes.jar b/src/源代码/XNote/app/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000..e40e345 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/add_shortcut_to_home.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/add_shortcut_to_home.png new file mode 100644 index 0000000..24c12b3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/add_shortcut_to_home.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/alarm_time.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/alarm_time.png new file mode 100644 index 0000000..8a21ef4 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/alarm_time.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/bg_color.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/bg_color.png new file mode 100644 index 0000000..6f6c45c Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/bg_color.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/buttons_background.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/buttons_background.png new file mode 100644 index 0000000..27c0b74 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/buttons_background.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete.png new file mode 100644 index 0000000..b419d51 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel.png new file mode 100644 index 0000000..4a1f07a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel_2.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel_2.png new file mode 100644 index 0000000..64408ba Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel_2.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel_xml.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel_xml.xml new file mode 100644 index 0000000..d6eb844 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_cancel_xml.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_ok_xml.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_ok_xml.xml new file mode 100644 index 0000000..82545b4 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/delete_records_ok_xml.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/deleterecords_ok.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/deleterecords_ok.png new file mode 100644 index 0000000..ed6dac3 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/deleterecords_ok.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/deleterecords_ok_2.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/deleterecords_ok_2.png new file mode 100644 index 0000000..9853408 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/deleterecords_ok_2.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/edit_folder_title.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/edit_folder_title.png new file mode 100644 index 0000000..94ac5bc Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/edit_folder_title.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/export_to_text.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/export_to_text.png new file mode 100644 index 0000000..cad4a0b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/export_to_text.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/folder_background.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/folder_background.png new file mode 100644 index 0000000..31320be Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/folder_background.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/icon.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/icon.png new file mode 100644 index 0000000..3491823 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/icon.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/imagebutton_background.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/imagebutton_background.png new file mode 100644 index 0000000..91b6125 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/imagebutton_background.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/imagebutton_background_2.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/imagebutton_background_2.png new file mode 100644 index 0000000..31fc87c Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/imagebutton_background_2.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_blue.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_blue.png new file mode 100644 index 0000000..839a097 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_blue.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_green.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_green.png new file mode 100644 index 0000000..934001f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_green.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_pink.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_pink.png new file mode 100644 index 0000000..e393263 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_pink.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_white.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_white.png new file mode 100644 index 0000000..d122425 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_white.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_yellow.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_yellow.png new file mode 100644 index 0000000..1e4595d Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/item_light_yellow.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/main_background.jpg b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/main_background.jpg new file mode 100644 index 0000000..2614eaa Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/main_background.jpg differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/move_out_of_folder.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/move_out_of_folder.png new file mode 100644 index 0000000..705d22f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/move_out_of_folder.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/move_to_folder.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/move_to_folder.png new file mode 100644 index 0000000..705d22f Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/move_to_folder.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/new_folder.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/new_folder.png new file mode 100644 index 0000000..b06ecc0 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/new_folder.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/new_note.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/new_note.png new file mode 100644 index 0000000..e33a4c4 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/new_note.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_blue.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_blue.9.png new file mode 100644 index 0000000..e41d179 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_blue.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_gray.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_gray.9.png new file mode 100644 index 0000000..6bdaef7 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_gray.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_green.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_green.9.png new file mode 100644 index 0000000..fe57216 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_green.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_pink.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_pink.9.png new file mode 100644 index 0000000..318813b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_bg_pink.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_blue.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_blue.9.png new file mode 100644 index 0000000..20ed3ef Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_blue.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_gray.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_gray.9.png new file mode 100644 index 0000000..92159de Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_gray.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_green.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_green.9.png new file mode 100644 index 0000000..36a4613 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_green.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_pink.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_pink.9.png new file mode 100644 index 0000000..ab6ebfb Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_pink.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_yellow.9.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_yellow.9.png new file mode 100644 index 0000000..3f87b41 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/notes_header_yellow.9.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/share.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/share.png new file mode 100644 index 0000000..cf24c2b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/share.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/shortcut_folder.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/shortcut_folder.png new file mode 100644 index 0000000..c6d26f5 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/shortcut_folder.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/title_background.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/title_background.png new file mode 100644 index 0000000..c779540 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/title_background.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/title_bar_imagebutton_add_note.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/title_bar_imagebutton_add_note.xml new file mode 100644 index 0000000..a491db5 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/title_bar_imagebutton_add_note.xml @@ -0,0 +1,6 @@ + + + + + diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_blue.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_blue.png new file mode 100644 index 0000000..2cb4f8b Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_blue.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_gray.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_gray.png new file mode 100644 index 0000000..7d6f801 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_gray.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_green.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_green.png new file mode 100644 index 0000000..4c75b87 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_green.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_red.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_red.png new file mode 100644 index 0000000..a6f6b8a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_red.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_yellow.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_yellow.png new file mode 100644 index 0000000..adc28fd Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_big_yellow.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_blue.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_blue.png new file mode 100644 index 0000000..b2e812e Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_blue.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_gray.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_gray.png new file mode 100644 index 0000000..4746b69 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_gray.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_green.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_green.png new file mode 100644 index 0000000..ecd0d12 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_green.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_red.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_red.png new file mode 100644 index 0000000..8b609c8 Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_red.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_yellow.png b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_yellow.png new file mode 100644 index 0000000..461af6a Binary files /dev/null and b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/widget_small_yellow.png differ diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_input_psd.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_input_psd.xml new file mode 100644 index 0000000..9552793 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_input_psd.xml @@ -0,0 +1,15 @@ + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_layout_new_folder.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_layout_new_folder.xml new file mode 100644 index 0000000..ca269db --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_layout_new_folder.xml @@ -0,0 +1,14 @@ + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_layout_set_password.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_layout_set_password.xml new file mode 100644 index 0000000..2cc5a65 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_layout_set_password.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_note_bg_color.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_note_bg_color.xml new file mode 100644 index 0000000..4704fa6 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/dialog_note_bg_color.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/index_page.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/index_page.xml new file mode 100644 index 0000000..cfc395e --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/index_page.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_del_or_move_item_layout.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_del_or_move_item_layout.xml new file mode 100644 index 0000000..9e7a233 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_del_or_move_item_layout.xml @@ -0,0 +1,30 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_item_layout.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_item_layout.xml new file mode 100644 index 0000000..2562811 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_item_layout.xml @@ -0,0 +1,25 @@ + + + + + + + + \ No newline at end of file diff --git a/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_layout_del_or_move_records.xml b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_layout_del_or_move_records.xml new file mode 100644 index 0000000..d55faa7 --- /dev/null +++ b/src/源代码/XNote/app/build/intermediates/packaged_res/debug/layout/listview_layout_del_or_move_records.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + +