Compare commits
12 Commits
xiaokaiwen
...
master
Author | SHA1 | Date |
---|---|---|
|
47fbd00574 | 2 years ago |
|
104b0aeec5 | 2 years ago |
|
4f14defff4 | 2 years ago |
|
ec082210d9 | 2 years ago |
|
885550904a | 2 years ago |
|
6af86bcc43 | 2 years ago |
|
de225604a1 | 2 years ago |
|
dbd1b1dafa | 2 years ago |
|
d26d136d0d | 2 years ago |
|
fc71734993 | 2 years ago |
|
715a354ce1 | 2 years ago |
|
4cbe043b5e | 2 years ago |
@ -0,0 +1,43 @@
|
|||||||
|
一、
|
||||||
|
用例名:在小米便签中插入视频或图片
|
||||||
|
业务目标:允许用户在小米便签中插入视频或图片
|
||||||
|
执行者:小米便签用户
|
||||||
|
前置条件:
|
||||||
|
用户已经打开小米便签应用程序,并已经登录
|
||||||
|
用户已经创建或打开了一个便签进入编辑界面
|
||||||
|
触发条件:用户想要在笔记中插入视频或图片
|
||||||
|
基本交互动作:
|
||||||
|
用户在编辑笔记的页面中选择需要插入视频或图片的位置
|
||||||
|
用户点击添加媒体按钮
|
||||||
|
系统弹出媒体库选择框,用户可以选择从相册导入或拍摄视频或拍摄照片
|
||||||
|
用户选择并添加所需的视频或图片
|
||||||
|
系统将视频或图片插入到笔记中,并根据需要自动调整大小和位置
|
||||||
|
扩展交互动作:
|
||||||
|
1a. 用户可以调整视频或图片的大小和位置
|
||||||
|
用户长按视频或图片,拖动手指以调整位置
|
||||||
|
用户使用两个手指放大或缩小视频或图片以调整大小
|
||||||
|
2a. 用户可以删除视频或图片
|
||||||
|
用户长按视频或图片,系统弹出删除确认对话框,用户确认后,系统将视频或图片从笔记中删除
|
||||||
|
二、
|
||||||
|
用例名:在小米便签中设置标题段落行距
|
||||||
|
业务目标:允许用户在小米便签中设置标题段落的行距
|
||||||
|
执行者:小米便签用户
|
||||||
|
前置条件:
|
||||||
|
用户已经打开小米便签应用程序,并已经登录
|
||||||
|
用户已经创建或打开了一个便签进入编辑界面
|
||||||
|
触发条件:用户想要设置标题段落的行距
|
||||||
|
基本交互动作:
|
||||||
|
用户选中需要设置行距的标题段落
|
||||||
|
用户在编辑笔记的页面中选择需要设置行距的标题段落
|
||||||
|
用户双击标题段落,或者长按标题段落并选择“编辑”
|
||||||
|
用户点击设置行距按钮
|
||||||
|
在标题段落上方的菜单栏中,用户点击“行距”按钮
|
||||||
|
系统弹出行距设置框,用户可以选择所需的行距
|
||||||
|
系统弹出行距设置框,用户可以从下拉列表中选择所需的行距
|
||||||
|
用户选择所需的行距
|
||||||
|
用户在行距设置框中选择所需的行距,或者点击“取消”按钮以取消行距设置
|
||||||
|
系统将行距应用到标题段落中
|
||||||
|
系统将用户选择的行距应用到标题段落中,并自动调整段落的行距
|
||||||
|
扩展交互动作:
|
||||||
|
1a. 用户可以调整标题段落的字体大小和样式
|
||||||
|
在编辑笔记的页面中,用户可以选择标题段
|
@ -1 +0,0 @@
|
|||||||
1
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
1
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
#Tue Nov 09 19:08:53 CST 2021
|
||||||
|
gradle.version=6.8
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,19 @@
|
|||||||
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdkVersion 21
|
||||||
|
buildToolsVersion '30.0.2'
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
applicationId "net.micode.notes"
|
||||||
|
minSdkVersion 21
|
||||||
|
targetSdkVersion 8
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
minifyEnabled false
|
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
* Automatically generated file. DO NOT MODIFY
|
||||||
|
*/
|
||||||
|
package net.micode.notes;
|
||||||
|
|
||||||
|
public final class BuildConfig {
|
||||||
|
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||||
|
public static final String APPLICATION_ID = "net.micode.notes";
|
||||||
|
public static final String BUILD_TYPE = "debug";
|
||||||
|
public static final int VERSION_CODE = 1;
|
||||||
|
public static final String VERSION_NAME = "0.1";
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
{}
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": 2,
|
||||||
|
"artifactType": {
|
||||||
|
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||||
|
"kind": "Directory"
|
||||||
|
},
|
||||||
|
"applicationId": "net.micode.notes",
|
||||||
|
"variantName": "debug",
|
||||||
|
"elements": []
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
6
|
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\android_workspace\MiNotes\app\src\main\assets"/><source path="D:\android_workspace\MiNotes\app\build\intermediates\shader_assets\debug\out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\android_workspace\MiNotes\app\src\debug\assets"/></dataSet></merger>
|
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\android_workspace\MiNotes\app\src\main\jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\android_workspace\MiNotes\app\src\debug\jniLibs"/></dataSet></merger>
|
@ -0,0 +1,96 @@
|
|||||||
|
#Wed Nov 17 14:03:32 CST 2021
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\selected.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_selected.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_green.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_4x_green.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_green_single.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_green_single.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\add_account_text.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_add_account_text.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_blue_down.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_blue_down.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_yellow.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_2x_yellow.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\note_list_dropdown.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_note_list_dropdown.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\font_small.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_font_small.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_title_yellow.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_title_yellow.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\note_edit_color_selector_panel.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_note_edit_color_selector_panel.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\new_note_normal.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_normal.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\notification.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_notification.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\widget_2x.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_2x.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_middle.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_yellow_middle.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_red_up.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_red_up.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\color\\primary_text_dark.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\color_primary_text_dark.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\note_list.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_note_list.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\dropdown_icon.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_dropdown_icon.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_white.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_4x_white.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\raw\\introduction=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\raw_introduction.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_down.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_yellow_down.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\sub_folder.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_sub_folder.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_single.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_yellow_single.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\note_edit.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_note_edit.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\xml\\widget_2x_info.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_2x_info.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_red_down.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_red_down.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\clock.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_clock.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\xml\\searchable.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\xml_searchable.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable\\new_note.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable_new_note.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_green_down.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_green_down.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\font_normal.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_font_normal.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\menu_move.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_menu_move.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\note_edit_list_item.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_edit_list_item.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_title_red.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_title_red.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\note_list_footer.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_list_footer.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\bg_color_btn_mask.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_bg_color_btn_mask.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_blue.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_4x_blue.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_footer_bg.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_footer_bg.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_white.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_white.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\call_note_edit.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_call_note_edit.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\settings_header.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_settings_header.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_blue.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_blue.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_title_green.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_title_green.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\widget_4x.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_widget_4x.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\call_record_folder.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_call_record_folder.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\dialog_edit_text.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_dialog_edit_text.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\raw-zh-rCN\\introduction=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\raw-zh-rCN_introduction.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_white_middle.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_white_middle.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\note_item.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_item.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_green.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_2x_green.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\bg_btn_set_color.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_bg_btn_set_color.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_title_blue.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_title_blue.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\font_size_selector_bg.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_font_size_selector_bg.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_up.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_yellow_up.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_blue.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_2x_blue.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_blue_up.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_blue_up.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\title_bar_bg.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_bar_bg.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_red_middle.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_red_middle.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\icon_app.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_icon_app.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_white_single.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_white_single.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\note_list.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_list.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_green_up.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_green_up.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\search_result.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_search_result.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_white.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_2x_white.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\menu\\note_list_options.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\menu_note_list_options.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\font_large.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_font_large.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\datetime_picker.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_datetime_picker.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\note_edit.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_edit.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_red_single.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_red_single.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\folder_list_item.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_folder_list_item.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_red.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_2x_red.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\call_record.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_call_record.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_red.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_red.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_background.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_background.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\new_note_pressed.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_new_note_pressed.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\xml\\preferences.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\xml_preferences.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\title_alert.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_title_alert.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_red.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_4x_red.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\account_dialog_title.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_account_dialog_title.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\layout\\note_list_dropdown_menu.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\layout_note_list_dropdown_menu.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_white_up.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_white_up.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\menu_delete.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_menu_delete.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_green.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_green.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_blue_middle.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_blue_middle.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\delete.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_delete.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_yellow.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_yellow.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_yellow.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_widget_4x_yellow.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\font_super.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_font_super.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\edit_title_white.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_edit_title_white.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_green_middle.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_green_middle.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_blue_single.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_blue_single.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_white_down.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_white_down.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\drawable-hdpi\\list_folder.9.png=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\drawable-hdpi_list_folder.9.png.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\color\\secondary_text_dark.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\color_secondary_text_dark.xml.flat
|
||||||
|
D\:\\android_workspace\\MiNotes\\app\\src\\main\\res\\xml\\widget_4x_info.xml=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\res\\merged\\debug\\xml_widget_4x_info.xml.flat
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\android_workspace\MiNotes\app\src\main\shaders"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\android_workspace\MiNotes\app\src\debug\shaders"/></dataSet></merger>
|
@ -0,0 +1,4 @@
|
|||||||
|
#Thu Nov 18 13:20:45 CST 2021
|
||||||
|
base.0=D\:\\android_workspace\\MiNotes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\classes.dex
|
||||||
|
path.0=classes.dex
|
||||||
|
renamed.0=classes.dex
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue