diff --git a/Src/.gradle/7.5/checksums/checksums.lock b/Src/.gradle/7.5/checksums/checksums.lock
index 90feb6d..c739b34 100644
Binary files a/Src/.gradle/7.5/checksums/checksums.lock and b/Src/.gradle/7.5/checksums/checksums.lock differ
diff --git a/Src/.gradle/7.5/checksums/md5-checksums.bin b/Src/.gradle/7.5/checksums/md5-checksums.bin
index 99480df..4539fc8 100644
Binary files a/Src/.gradle/7.5/checksums/md5-checksums.bin and b/Src/.gradle/7.5/checksums/md5-checksums.bin differ
diff --git a/Src/.gradle/7.5/checksums/sha1-checksums.bin b/Src/.gradle/7.5/checksums/sha1-checksums.bin
index 2908e37..cec8e91 100644
Binary files a/Src/.gradle/7.5/checksums/sha1-checksums.bin and b/Src/.gradle/7.5/checksums/sha1-checksums.bin differ
diff --git a/Src/.gradle/7.5/executionHistory/executionHistory.bin b/Src/.gradle/7.5/executionHistory/executionHistory.bin
index db314c4..c879da9 100644
Binary files a/Src/.gradle/7.5/executionHistory/executionHistory.bin and b/Src/.gradle/7.5/executionHistory/executionHistory.bin differ
diff --git a/Src/.gradle/7.5/executionHistory/executionHistory.lock b/Src/.gradle/7.5/executionHistory/executionHistory.lock
index 45fe19f..7eac694 100644
Binary files a/Src/.gradle/7.5/executionHistory/executionHistory.lock and b/Src/.gradle/7.5/executionHistory/executionHistory.lock differ
diff --git a/Src/.gradle/7.5/fileHashes/fileHashes.bin b/Src/.gradle/7.5/fileHashes/fileHashes.bin
index 32c13ea..c997e49 100644
Binary files a/Src/.gradle/7.5/fileHashes/fileHashes.bin and b/Src/.gradle/7.5/fileHashes/fileHashes.bin differ
diff --git a/Src/.gradle/7.5/fileHashes/fileHashes.lock b/Src/.gradle/7.5/fileHashes/fileHashes.lock
index ba46bf4..f6b93c2 100644
Binary files a/Src/.gradle/7.5/fileHashes/fileHashes.lock and b/Src/.gradle/7.5/fileHashes/fileHashes.lock differ
diff --git a/Src/.gradle/7.5/fileHashes/resourceHashesCache.bin b/Src/.gradle/7.5/fileHashes/resourceHashesCache.bin
index 937ad88..64a07df 100644
Binary files a/Src/.gradle/7.5/fileHashes/resourceHashesCache.bin and b/Src/.gradle/7.5/fileHashes/resourceHashesCache.bin differ
diff --git a/Src/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/Src/.gradle/buildOutputCleanup/buildOutputCleanup.lock
index c41ed68..eb75b52 100644
Binary files a/Src/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/Src/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/Src/.gradle/buildOutputCleanup/outputFiles.bin b/Src/.gradle/buildOutputCleanup/outputFiles.bin
index 12ac1ba..cd973d8 100644
Binary files a/Src/.gradle/buildOutputCleanup/outputFiles.bin and b/Src/.gradle/buildOutputCleanup/outputFiles.bin differ
diff --git a/Src/.gradle/file-system.probe b/Src/.gradle/file-system.probe
index 055c486..72dd33d 100644
Binary files a/Src/.gradle/file-system.probe and b/Src/.gradle/file-system.probe differ
diff --git a/Src/app/build.gradle b/Src/app/build.gradle
index d5d03f6..f899b34 100644
--- a/Src/app/build.gradle
+++ b/Src/app/build.gradle
@@ -13,6 +13,9 @@ android {
applicationId "net.micode.notes"
minSdk 21
targetSdkVersion defaultTargetSdkVersion
+ ndk {
+ abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64" // 确保包含目标架构
+ }
}
buildTypes {
@@ -21,8 +24,26 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
-
+ repositories {
+ google()
+ mavenCentral() // Maven Central 仓库
+ }
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
}
-}
+ dependencies {
+ implementation 'com.alphacephei:vosk-android:0.3.38'
+ implementation 'net.java.dev.jna:jna:5.5.0'
+ implementation 'net.java.dev.jna:jna-platform:5.5.0'
+ }
+ sourceSets {
+ main {
+ jniLibs.srcDirs = ['src/main/jniLibs']
+ }
+
+ }
+ packagingOptions {
+ exclude 'META-INF/AL2.0'
+ exclude 'META-INF/LGPL2.1'
+ }
+}
\ No newline at end of file
diff --git a/Src/app/build/generated/source/buildConfig/androidTest/debug/net/micode/notes/test/BuildConfig.java b/Src/app/build/generated/source/buildConfig/androidTest/debug/net/micode/notes/test/BuildConfig.java
new file mode 100644
index 0000000..b067bc1
--- /dev/null
+++ b/Src/app/build/generated/source/buildConfig/androidTest/debug/net/micode/notes/test/BuildConfig.java
@@ -0,0 +1,10 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package net.micode.notes.test;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "net.micode.notes.test";
+ public static final String BUILD_TYPE = "debug";
+}
diff --git a/Src/app/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json b/Src/app/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json
new file mode 100644
index 0000000..9e26dfe
--- /dev/null
+++ b/Src/app/build/intermediates/annotation_processor_list/debugAndroidTest/annotationProcessors.json
@@ -0,0 +1 @@
+{}
\ No newline at end of file
diff --git a/Src/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt b/Src/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt
index 46dacc6..66652a5 100644
--- a/Src/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt
+++ b/Src/app/build/intermediates/apk_ide_redirect_file/debug/redirect.txt
@@ -1,2 +1,2 @@
#- File Locator -
-listingFile=../../apk/debug/output-metadata.json
+listingFile=../../../outputs/apk/debug/output-metadata.json
diff --git a/Src/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt b/Src/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt
new file mode 100644
index 0000000..b7d5868
--- /dev/null
+++ b/Src/app/build/intermediates/apk_ide_redirect_file/debugAndroidTest/redirect.txt
@@ -0,0 +1,2 @@
+#- File Locator -
+listingFile=../../../outputs/apk/androidTest/debug/output-metadata.json
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/README b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/README
new file mode 100644
index 0000000..0b5d9e5
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/README
@@ -0,0 +1,6 @@
+Chinese Vosk model for mobile
+
+CER results
+
+23.54% speechio_02
+38.29% speechio_06
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/am/final.mdl b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/am/final.mdl
new file mode 100644
index 0000000..f7cf1de
Binary files /dev/null and b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/am/final.mdl differ
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/conf/mfcc.conf b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/conf/mfcc.conf
new file mode 100644
index 0000000..12fdad4
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/conf/mfcc.conf
@@ -0,0 +1,8 @@
+--use-energy=false
+--sample-frequency=16000
+--num-mel-bins=40
+--num-ceps=40
+--low-freq=40
+--high-freq=-200
+--allow-upsample=true
+--allow-downsample=true
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/conf/model.conf b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/conf/model.conf
new file mode 100644
index 0000000..9ae12a7
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/conf/model.conf
@@ -0,0 +1,10 @@
+--min-active=200
+--max-active=5000
+--beam=12.0
+--lattice-beam=4.0
+--acoustic-scale=1.0
+--frame-subsampling-factor=3
+--endpoint.silence-phones=1:2:3:4:5:6:7:8:9:10
+--endpoint.rule2.min-trailing-silence=0.5
+--endpoint.rule3.min-trailing-silence=1.0
+--endpoint.rule4.min-trailing-silence=2.0
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/Gr.fst b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/Gr.fst
new file mode 100644
index 0000000..ee4580d
Binary files /dev/null and b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/Gr.fst differ
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/HCLr.fst b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/HCLr.fst
new file mode 100644
index 0000000..2ad6e8f
Binary files /dev/null and b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/HCLr.fst differ
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/disambig_tid.int b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/disambig_tid.int
new file mode 100644
index 0000000..c1a114f
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/disambig_tid.int
@@ -0,0 +1,39 @@
+11845
+11846
+11847
+11848
+11849
+11850
+11851
+11852
+11853
+11854
+11855
+11856
+11857
+11858
+11859
+11860
+11861
+11862
+11863
+11864
+11865
+11866
+11867
+11868
+11869
+11870
+11871
+11872
+11873
+11874
+11875
+11876
+11877
+11878
+11879
+11880
+11881
+11882
+11883
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/phones/word_boundary.int b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/phones/word_boundary.int
new file mode 100644
index 0000000..9f3713e
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/graph/phones/word_boundary.int
@@ -0,0 +1,646 @@
+1 nonword
+2 begin
+3 end
+4 internal
+5 singleton
+6 nonword
+7 begin
+8 end
+9 internal
+10 singleton
+11 begin
+12 end
+13 internal
+14 singleton
+15 begin
+16 end
+17 internal
+18 singleton
+19 begin
+20 end
+21 internal
+22 singleton
+23 begin
+24 end
+25 internal
+26 singleton
+27 begin
+28 end
+29 internal
+30 singleton
+31 begin
+32 end
+33 internal
+34 singleton
+35 begin
+36 end
+37 internal
+38 singleton
+39 begin
+40 end
+41 internal
+42 singleton
+43 begin
+44 end
+45 internal
+46 singleton
+47 begin
+48 end
+49 internal
+50 singleton
+51 begin
+52 end
+53 internal
+54 singleton
+55 begin
+56 end
+57 internal
+58 singleton
+59 begin
+60 end
+61 internal
+62 singleton
+63 begin
+64 end
+65 internal
+66 singleton
+67 begin
+68 end
+69 internal
+70 singleton
+71 begin
+72 end
+73 internal
+74 singleton
+75 begin
+76 end
+77 internal
+78 singleton
+79 begin
+80 end
+81 internal
+82 singleton
+83 begin
+84 end
+85 internal
+86 singleton
+87 begin
+88 end
+89 internal
+90 singleton
+91 begin
+92 end
+93 internal
+94 singleton
+95 begin
+96 end
+97 internal
+98 singleton
+99 begin
+100 end
+101 internal
+102 singleton
+103 begin
+104 end
+105 internal
+106 singleton
+107 begin
+108 end
+109 internal
+110 singleton
+111 begin
+112 end
+113 internal
+114 singleton
+115 begin
+116 end
+117 internal
+118 singleton
+119 begin
+120 end
+121 internal
+122 singleton
+123 begin
+124 end
+125 internal
+126 singleton
+127 begin
+128 end
+129 internal
+130 singleton
+131 begin
+132 end
+133 internal
+134 singleton
+135 begin
+136 end
+137 internal
+138 singleton
+139 begin
+140 end
+141 internal
+142 singleton
+143 begin
+144 end
+145 internal
+146 singleton
+147 begin
+148 end
+149 internal
+150 singleton
+151 begin
+152 end
+153 internal
+154 singleton
+155 begin
+156 end
+157 internal
+158 singleton
+159 begin
+160 end
+161 internal
+162 singleton
+163 begin
+164 end
+165 internal
+166 singleton
+167 begin
+168 end
+169 internal
+170 singleton
+171 begin
+172 end
+173 internal
+174 singleton
+175 begin
+176 end
+177 internal
+178 singleton
+179 begin
+180 end
+181 internal
+182 singleton
+183 begin
+184 end
+185 internal
+186 singleton
+187 begin
+188 end
+189 internal
+190 singleton
+191 begin
+192 end
+193 internal
+194 singleton
+195 begin
+196 end
+197 internal
+198 singleton
+199 begin
+200 end
+201 internal
+202 singleton
+203 begin
+204 end
+205 internal
+206 singleton
+207 begin
+208 end
+209 internal
+210 singleton
+211 begin
+212 end
+213 internal
+214 singleton
+215 begin
+216 end
+217 internal
+218 singleton
+219 begin
+220 end
+221 internal
+222 singleton
+223 begin
+224 end
+225 internal
+226 singleton
+227 begin
+228 end
+229 internal
+230 singleton
+231 begin
+232 end
+233 internal
+234 singleton
+235 begin
+236 end
+237 internal
+238 singleton
+239 begin
+240 end
+241 internal
+242 singleton
+243 begin
+244 end
+245 internal
+246 singleton
+247 begin
+248 end
+249 internal
+250 singleton
+251 begin
+252 end
+253 internal
+254 singleton
+255 begin
+256 end
+257 internal
+258 singleton
+259 begin
+260 end
+261 internal
+262 singleton
+263 begin
+264 end
+265 internal
+266 singleton
+267 begin
+268 end
+269 internal
+270 singleton
+271 begin
+272 end
+273 internal
+274 singleton
+275 begin
+276 end
+277 internal
+278 singleton
+279 begin
+280 end
+281 internal
+282 singleton
+283 begin
+284 end
+285 internal
+286 singleton
+287 begin
+288 end
+289 internal
+290 singleton
+291 begin
+292 end
+293 internal
+294 singleton
+295 begin
+296 end
+297 internal
+298 singleton
+299 begin
+300 end
+301 internal
+302 singleton
+303 begin
+304 end
+305 internal
+306 singleton
+307 begin
+308 end
+309 internal
+310 singleton
+311 begin
+312 end
+313 internal
+314 singleton
+315 begin
+316 end
+317 internal
+318 singleton
+319 begin
+320 end
+321 internal
+322 singleton
+323 begin
+324 end
+325 internal
+326 singleton
+327 begin
+328 end
+329 internal
+330 singleton
+331 begin
+332 end
+333 internal
+334 singleton
+335 begin
+336 end
+337 internal
+338 singleton
+339 begin
+340 end
+341 internal
+342 singleton
+343 begin
+344 end
+345 internal
+346 singleton
+347 begin
+348 end
+349 internal
+350 singleton
+351 begin
+352 end
+353 internal
+354 singleton
+355 begin
+356 end
+357 internal
+358 singleton
+359 begin
+360 end
+361 internal
+362 singleton
+363 begin
+364 end
+365 internal
+366 singleton
+367 begin
+368 end
+369 internal
+370 singleton
+371 begin
+372 end
+373 internal
+374 singleton
+375 begin
+376 end
+377 internal
+378 singleton
+379 begin
+380 end
+381 internal
+382 singleton
+383 begin
+384 end
+385 internal
+386 singleton
+387 begin
+388 end
+389 internal
+390 singleton
+391 begin
+392 end
+393 internal
+394 singleton
+395 begin
+396 end
+397 internal
+398 singleton
+399 begin
+400 end
+401 internal
+402 singleton
+403 begin
+404 end
+405 internal
+406 singleton
+407 begin
+408 end
+409 internal
+410 singleton
+411 begin
+412 end
+413 internal
+414 singleton
+415 begin
+416 end
+417 internal
+418 singleton
+419 begin
+420 end
+421 internal
+422 singleton
+423 begin
+424 end
+425 internal
+426 singleton
+427 begin
+428 end
+429 internal
+430 singleton
+431 begin
+432 end
+433 internal
+434 singleton
+435 begin
+436 end
+437 internal
+438 singleton
+439 begin
+440 end
+441 internal
+442 singleton
+443 begin
+444 end
+445 internal
+446 singleton
+447 begin
+448 end
+449 internal
+450 singleton
+451 begin
+452 end
+453 internal
+454 singleton
+455 begin
+456 end
+457 internal
+458 singleton
+459 begin
+460 end
+461 internal
+462 singleton
+463 begin
+464 end
+465 internal
+466 singleton
+467 begin
+468 end
+469 internal
+470 singleton
+471 begin
+472 end
+473 internal
+474 singleton
+475 begin
+476 end
+477 internal
+478 singleton
+479 begin
+480 end
+481 internal
+482 singleton
+483 begin
+484 end
+485 internal
+486 singleton
+487 begin
+488 end
+489 internal
+490 singleton
+491 begin
+492 end
+493 internal
+494 singleton
+495 begin
+496 end
+497 internal
+498 singleton
+499 begin
+500 end
+501 internal
+502 singleton
+503 begin
+504 end
+505 internal
+506 singleton
+507 begin
+508 end
+509 internal
+510 singleton
+511 begin
+512 end
+513 internal
+514 singleton
+515 begin
+516 end
+517 internal
+518 singleton
+519 begin
+520 end
+521 internal
+522 singleton
+523 begin
+524 end
+525 internal
+526 singleton
+527 begin
+528 end
+529 internal
+530 singleton
+531 begin
+532 end
+533 internal
+534 singleton
+535 begin
+536 end
+537 internal
+538 singleton
+539 begin
+540 end
+541 internal
+542 singleton
+543 begin
+544 end
+545 internal
+546 singleton
+547 begin
+548 end
+549 internal
+550 singleton
+551 begin
+552 end
+553 internal
+554 singleton
+555 begin
+556 end
+557 internal
+558 singleton
+559 begin
+560 end
+561 internal
+562 singleton
+563 begin
+564 end
+565 internal
+566 singleton
+567 begin
+568 end
+569 internal
+570 singleton
+571 begin
+572 end
+573 internal
+574 singleton
+575 begin
+576 end
+577 internal
+578 singleton
+579 begin
+580 end
+581 internal
+582 singleton
+583 begin
+584 end
+585 internal
+586 singleton
+587 begin
+588 end
+589 internal
+590 singleton
+591 begin
+592 end
+593 internal
+594 singleton
+595 begin
+596 end
+597 internal
+598 singleton
+599 begin
+600 end
+601 internal
+602 singleton
+603 begin
+604 end
+605 internal
+606 singleton
+607 begin
+608 end
+609 internal
+610 singleton
+611 begin
+612 end
+613 internal
+614 singleton
+615 begin
+616 end
+617 internal
+618 singleton
+619 begin
+620 end
+621 internal
+622 singleton
+623 begin
+624 end
+625 internal
+626 singleton
+627 begin
+628 end
+629 internal
+630 singleton
+631 begin
+632 end
+633 internal
+634 singleton
+635 begin
+636 end
+637 internal
+638 singleton
+639 begin
+640 end
+641 internal
+642 singleton
+643 begin
+644 end
+645 internal
+646 singleton
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.dubm b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.dubm
new file mode 100644
index 0000000..bcf2689
Binary files /dev/null and b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.dubm differ
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.ie b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.ie
new file mode 100644
index 0000000..e1d78a2
Binary files /dev/null and b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.ie differ
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.mat b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.mat
new file mode 100644
index 0000000..1093236
Binary files /dev/null and b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/final.mat differ
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/global_cmvn.stats b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/global_cmvn.stats
new file mode 100644
index 0000000..500cc40
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/global_cmvn.stats
@@ -0,0 +1,3 @@
+ [
+ 1.117107e+11 -7.827721e+08 -1.101398e+10 -2.193934e+09 -1.347332e+10 -1.613916e+10 -1.199561e+10 -1.255081e+10 -1.638895e+10 -3.821099e+09 -1.372833e+10 -5.244242e+09 -1.098187e+10 -3.655235e+09 -9.364579e+09 -4.285302e+09 -6.296873e+09 -1.552953e+09 -3.176746e+09 -1.202976e+08 -9.857023e+08 2.316555e+08 -1.61059e+08 -5.891868e+07 3.465849e+08 -1.842054e+08 3.248211e+08 -1.483965e+08 3.739239e+08 -6.672061e+08 4.442288e+08 -9.274889e+08 5.142684e+08 4.292036e+07 2.206386e+08 -4.532715e+08 -2.092499e+08 -3.70488e+08 -8.079404e+07 -8.425977e+07 1.344125e+09
+ 9.982632e+12 1.02635e+12 8.634624e+11 9.06451e+11 9.652096e+11 1.12772e+12 9.468372e+11 9.141218e+11 9.670484e+11 6.936961e+11 8.141006e+11 6.256321e+11 6.087707e+11 4.616898e+11 4.212042e+11 2.862872e+11 2.498089e+11 1.470856e+11 1.099197e+11 5.780894e+10 3.118114e+10 1.060667e+10 1.466199e+09 4.173056e+08 5.257362e+09 1.277714e+10 2.114478e+10 2.974502e+10 3.587691e+10 4.078971e+10 4.247745e+10 4.382608e+10 4.62521e+10 4.575282e+10 3.546206e+10 3.041531e+10 2.838562e+10 2.258604e+10 1.715295e+10 1.303227e+10 0 ]
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/online_cmvn.conf b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/online_cmvn.conf
new file mode 100644
index 0000000..e69de29
diff --git a/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/splice.conf b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/splice.conf
new file mode 100644
index 0000000..960cd2e
--- /dev/null
+++ b/Src/app/build/intermediates/assets/debug/vosk-model-small-cn-0.22/ivector/splice.conf
@@ -0,0 +1,2 @@
+--left-context=3
+--right-context=3
diff --git a/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar
index b80f7f1..6a74aaf 100644
Binary files a/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar and b/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar differ
diff --git a/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar b/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar
new file mode 100644
index 0000000..df70a92
Binary files /dev/null and b/Src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debugAndroidTest/R.jar differ
diff --git a/Src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar b/Src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar
new file mode 100644
index 0000000..4d2d1fe
Binary files /dev/null and b/Src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/README.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/README.jar
new file mode 100644
index 0000000..5a7256e
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/README.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/am/final.mdl.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/am/final.mdl.jar
new file mode 100644
index 0000000..8d69a1d
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/am/final.mdl.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/conf/mfcc.conf.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/conf/mfcc.conf.jar
new file mode 100644
index 0000000..7b29bff
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/conf/mfcc.conf.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/conf/model.conf.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/conf/model.conf.jar
new file mode 100644
index 0000000..cc64405
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/conf/model.conf.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/Gr.fst.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/Gr.fst.jar
new file mode 100644
index 0000000..80e1fcf
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/Gr.fst.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/HCLr.fst.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/HCLr.fst.jar
new file mode 100644
index 0000000..50beb5f
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/HCLr.fst.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/disambig_tid.int.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/disambig_tid.int.jar
new file mode 100644
index 0000000..67dfb99
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/disambig_tid.int.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/phones/word_boundary.int.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/phones/word_boundary.int.jar
new file mode 100644
index 0000000..aa56c0f
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/graph/phones/word_boundary.int.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.dubm.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.dubm.jar
new file mode 100644
index 0000000..3d4f42e
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.dubm.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.ie.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.ie.jar
new file mode 100644
index 0000000..9bfa57c
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.ie.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.mat.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.mat.jar
new file mode 100644
index 0000000..bfc0d65
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/final.mat.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/global_cmvn.stats.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/global_cmvn.stats.jar
new file mode 100644
index 0000000..4deb50a
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/global_cmvn.stats.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/online_cmvn.conf.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/online_cmvn.conf.jar
new file mode 100644
index 0000000..52ebf4c
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/online_cmvn.conf.jar differ
diff --git a/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/splice.conf.jar b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/splice.conf.jar
new file mode 100644
index 0000000..6db0f83
Binary files /dev/null and b/Src/app/build/intermediates/compressed_assets/debug/out/assets/vosk-model-small-cn-0.22/ivector/splice.conf.jar differ
diff --git a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin
index 601f245..2fb60b5 100644
Binary files a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin and b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_1/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin
index 601f245..e7a8a6b 100644
Binary files a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin and b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_4/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin
index 601f245..f06372b 100644
Binary files a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin and b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_7/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_9/graph.bin b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_9/graph.bin
index 601f245..5c3f91d 100644
Binary files a/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_9/graph.bin and b/Src/app/build/intermediates/desugar_graph/debug/out/currentProject/dirs_bucket_9/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_0/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_1/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_2/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_3/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_4/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_5/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_6/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_6/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_6/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_7/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_7/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_7/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_8/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_8/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_8/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_9/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_9/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/dirs_bucket_9/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_0/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_0/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_0/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_1/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_1/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_1/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_2/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_2/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_2/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_3/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_3/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_3/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_4/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_4/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_4/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_5/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_5/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_5/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_6/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_6/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_6/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_7/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_7/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_7/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_8/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_8/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_8/graph.bin differ
diff --git a/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_9/graph.bin b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_9/graph.bin
new file mode 100644
index 0000000..601f245
Binary files /dev/null and b/Src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_d7248b1ad2ce92ce38c2467c6ec21e6ab04fc9eb2dad64d4d9776ec19f564ff9_bucket_9/graph.bin differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex b/Src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex
new file mode 100644
index 0000000..d21b9de
Binary files /dev/null and b/Src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
index 98d9b42..810f45c 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex
index f2fbe15..bde2c3c 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex
index 69a89a2..6c31cb6 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex
index ff7f276..3b053c7 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex
index 070dcb2..139b65a 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex
index 9d1bbc7..09acae7 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex
index 413d349..fbc413f 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/8/classes.dex b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/8/classes.dex
index 2684d74..7f69487 100644
Binary files a/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/8/classes.dex and b/Src/app/build/intermediates/dex/debug/mergeProjectDexDebug/8/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex b/Src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex
new file mode 100644
index 0000000..fb90e0a
Binary files /dev/null and b/Src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex differ
diff --git a/Src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/13/classes.dex b/Src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/13/classes.dex
new file mode 100644
index 0000000..13be3cd
Binary files /dev/null and b/Src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/13/classes.dex differ
diff --git a/Src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out b/Src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out
index 74d91ba..74d5898 100644
Binary files a/Src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out and b/Src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out differ
diff --git a/Src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out b/Src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out
new file mode 100644
index 0000000..489da02
Binary files /dev/null and b/Src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out differ
diff --git a/Src/app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out b/Src/app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out
new file mode 100644
index 0000000..9a03714
--- /dev/null
+++ b/Src/app/build/intermediates/dex_number_of_buckets_file/debugAndroidTest/out
@@ -0,0 +1 @@
+10
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state
index 1c983fc..56d7f55 100644
Binary files a/Src/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state and b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ
diff --git a/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sIw3kEjq6zyTkgsXdbRv_Siw3o4= b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sIw3kEjq6zyTkgsXdbRv_Siw3o4=
new file mode 100644
index 0000000..e578050
Binary files /dev/null and b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/sIw3kEjq6zyTkgsXdbRv_Siw3o4= differ
diff --git a/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/suIDDJNBDou8Zj2K5C8Vtxpje8c= b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/suIDDJNBDou8Zj2K5C8Vtxpje8c=
new file mode 100644
index 0000000..ff423c8
Binary files /dev/null and b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/suIDDJNBDou8Zj2K5C8Vtxpje8c= differ
diff --git a/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xSQ5zuVw5lRBqpxts+2RrqlMcYk= b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xSQ5zuVw5lRBqpxts+2RrqlMcYk=
new file mode 100644
index 0000000..d180baa
Binary files /dev/null and b/Src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/xSQ5zuVw5lRBqpxts+2RrqlMcYk= differ
diff --git a/Src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
index 3f10a39..af0b59a 100644
--- a/Src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
+++ b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
@@ -1,4 +1,4 @@
-#Wed Dec 25 10:55:44 CST 2024
+#Mon Dec 30 21:15:33 CST 2024
net.micode.notes.app-main-7\:/color/primary_text_dark.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\color_primary_text_dark.xml.flat
net.micode.notes.app-main-7\:/color/secondary_text_dark.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat
net.micode.notes.app-main-7\:/color/text_color_state_list.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\color_text_color_state_list.xml.flat
@@ -69,6 +69,7 @@ net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_white.png=D\:\\gitnote\\no
net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_yellow.png=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_yellow.png.flat
net.micode.notes.app-main-7\:/drawable/button_background.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable_button_background.xml.flat
net.micode.notes.app-main-7\:/drawable/edittext_background.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable_edittext_background.xml.flat
+net.micode.notes.app-main-7\:/drawable/ic_audio.png=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable_ic_audio.png.flat
net.micode.notes.app-main-7\:/drawable/ic_warning.png=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable_ic_warning.png.flat
net.micode.notes.app-main-7\:/drawable/new_note.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable_new_note.xml.flat
net.micode.notes.app-main-7\:/drawable/toast_background.xml=D\:\\gitnote\\notes\\app\\build\\intermediates\\merged_res\\debug\\drawable_toast_background.xml.flat
diff --git a/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 0000000..d65e0cc
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,108 @@
+
+
+
+ - 短信
+ - 邮件
+
+
+ - %1$s 条符合“%2$s”的搜索结果
+
+ 确认删除文件夹及所包含的便签吗?
+ 确认要删除该条便签吗?
+ 确认要删除所选的 %d 条便签吗?
+ 删除
+ 便签
+ 便签2x2
+ 便签4x4
+ 删除
+ 通话便签
+ 取消
+ 设置
+ 成功删除提醒
+ 不能为空便签设置闹钟提醒
+ 不能将空便签发送到桌面
+ 要查看的便签不存在
+ 导出文本时发生错误,请检查SD卡
+ SD卡被占用,不能操作
+ 同步已取消
+ 同步失败,发生内部错误
+ 同步失败,请检查网络和帐号设置
+ 导出失败
+ 文件夹 %1$s 已存在,请重新命名
+ yyyyMMdd
+ MM月dd日 kk:mm
+ 已将文本文件(%1$s)输出至SD卡(%2$s)目录
+ 已将所选 %1$d 条便签移到 %2$s 文件夹
+ 请输入名称
+ 已添加到桌面
+ 提醒我
+ 新建文件夹
+ 删除
+ 取消全选
+ 导出文本
+ 修改文件夹名称
+ 刪除文件夹
+ 查看文件夹
+ 大
+ 正常
+ 文字大小
+ 小
+ 超大
+ 进入清单模式
+ 移动到文件夹
+ 上一级文件夹
+ 退出清单模式
+ 删除提醒
+ 搜索
+ 全选
+ 没有选中项,操作无效
+ 选中了 %d 项
+ 发送到桌面
+ 设置
+ 分享
+ 同步
+ 取消同步
+ 选择文件夹
+ 已过期
+ 发送邮件
+ 打开地图
+ 呼叫电话
+ 浏览网页
+ 查看
+ 知道了
+ 新建便签
+ ...
+ 与google task同步便签记录
+ 同步账号
+ 添加账号
+ 新建便签背景颜色随机
+ 取消同步
+ 立即同步
+ 当前帐号 %1$s
+ 如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复
+ 请选择google帐号,便签将与该帐号的google task内容同步。
+ 同步便签
+ 上次同步于 %1$s
+ 取消
+ 更换账号
+ 删除账号
+ 设置
+ 正在同步中,不能修改同步帐号
+ 同步帐号已设置为%1$s
+ 便签
+ 搜索便签
+ 正在搜索便签
+ 便签中的文字
+ 创建提醒
+ 导出成功
+ 与%1$s同步成功
+ 正在获取服务器便签列表...
+ 登录%1$s...
+ 正在同步本地便签...
+ 同步已取消
+ 同步失败
+ 同步成功
+ 同步便签...
+ 没有关联内容,点击新建便签。
+ 访客模式下,便签内容不可见
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 0000000..226b5bc
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,108 @@
+
+
+
+ - 短信
+ - 郵件
+
+
+ - %1$s 條符合”%2$s“的搜尋結果
+
+ 確認刪除檔夾及所包含的便簽嗎?
+ 确认要删除該條便籤嗎?
+ 确认要刪除所選的 %d 條便籤嗎?
+ 刪除
+ 便簽
+ 便簽2x2
+ 便簽4x4
+ 刪除
+ 通話便籤
+ 取消
+ 設置
+ 成功刪除提醒
+ 不能爲空便籤設置鬧鐘提醒
+ 不能將空便籤發送到桌面
+ 要查看的便籤不存在
+ 導出TXT時發生錯誤,請檢查SD卡
+ SD卡被佔用,不能操作
+ 同步已取消
+ 同步失敗,發生內部錯誤
+ 同步失敗,請檢查網絡和帳號設置
+ 導出失敗
+ 文件夾 %1$s 已存在,請重新命名
+ yyyyMMdd
+ MM月dd日 kk:mm
+ 已將文本文件(%1$s)導出至SD(%2$s)目錄
+ 已將所選 %1$d 便籤移到 %2$s 文件夾
+ 請輸入名稱
+ 已添加到桌面
+ 提醒我
+ 新建文件夾
+ 刪除
+ 取消全選
+ 導出文本
+ 修改文件夾名稱
+ 刪除文件夾
+ 查看文件夾
+ 大
+ 正常
+ 文字大小
+ 小
+ 超大
+ 進入清單模式
+ 移動到文件夾
+ 上一級文件夾
+ 退出清單模式
+ 刪除提醒
+ 搜尋
+ 全選
+ 沒有選中項,操作無效
+ 選中了 %d 項
+ 發送到桌面
+ 設置
+ 分享
+ 同步
+ 取消同步
+ 選擇文件夾
+ 已過期
+ 發送郵件
+ 打開地圖
+ 呼叫電話
+ 浏覽網頁
+ 查看
+ 知道了
+ 新建便簽
+ ...
+ 与google task同步便簽記錄
+ 同步賬號
+ 添加賬號
+ 新建便籤背景顏色隨機
+ 取消同步
+ 立即同步
+ 當前帳號 %1$s
+ 如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復
+ 請選擇google帳號,便簽將與該帳號的google task內容同步。
+ 同步便簽
+ 上次同步于 %1$s
+ 取消
+ 更換賬號
+ 刪除賬號
+ 設置
+ 正在同步中,不能修改同步帳號
+ 同步帳號已設置為%1$s
+ 便籤
+ 搜索便籤
+ 正在搜索便籤
+ 便籤中的文字
+ 創建提醒
+ 導出成功
+ 與%1$s同步成功
+ 正在獲取服務器便籤列表...
+ 登陸%1$s...
+ 正在同步本地便籤...
+ 同步已取消
+ 同步失敗
+ 同步成功
+ 同步便簽...
+ 沒有關聯內容,點擊新建便簽。
+ 訪客模式下,便籤內容不可見
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
index 444945b..d3db633 100644
--- a/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
+++ b/Src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
@@ -1,5 +1,5 @@
-
+
- -%s
- --%s
- --%s
@@ -7,7 +7,7 @@
- Messaging
- Email
- #335b5b5b#FFFFFF#FFFFFF#2196F3#000000#80808033sp26sp20sp17sp14spNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel
+ #335b5b5b#FFFFFF#FFFFFF#2196F3#808080#00000033sp26sp20sp17sp14spNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel
- %1$s result for \"%2$s\"
- %1$s results for \"%2$s\"
@@ -57,4 +57,4 @@
- 郵件
便簽便簽2x2便簽4x4沒有關聯內容,點擊新建便簽。訪客模式下,便籤內容不可見...新建便簽成功刪除提醒創建提醒已過期yyyyMMddMM月dd日 kk:mm知道了查看呼叫電話發送郵件浏覽網頁打開地圖已將所選 %1$d 便籤移到 %2$s 文件夾新建文件夾導出文本同步取消同步設置搜尋刪除移動到文件夾選中了 %d 項沒有選中項,操作無效全選取消全選文字大小小正常大超大進入清單模式退出清單模式查看文件夾刪除文件夾修改文件夾名稱文件夾 %1$s 已存在,請重新命名分享發送到桌面提醒我刪除提醒選擇文件夾上一級文件夾已添加到桌面刪除确认要刪除所選的 %d 條便籤嗎?确认要删除該條便籤嗎?確認刪除檔夾及所包含的便簽嗎?SD卡被佔用,不能操作導出TXT時發生錯誤,請檢查SD卡要查看的便籤不存在不能爲空便籤設置鬧鐘提醒不能將空便籤發送到桌面導出成功導出失敗已將文本文件(%1$s)導出至SD(%2$s)目錄同步便簽...同步成功同步失敗同步已取消與%1$s同步成功同步失敗,請檢查網絡和帳號設置同步失敗,發生內部錯誤同步已取消登陸%1$s...正在獲取服務器便籤列表...正在同步本地便籤...設置同步賬號与google task同步便簽記錄上次同步于 %1$s添加賬號更換賬號刪除賬號取消立即同步取消同步當前帳號 %1$s如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復同步便簽請選擇google帳號,便簽將與該帳號的google task內容同步。正在同步中,不能修改同步帳號同步帳號已設置為%1$s新建便籤背景顏色隨機刪除通話便籤請輸入名稱正在搜索便籤搜索便籤便籤中的文字便籤設置取消
- %1$s 條符合”%2$s“的搜尋結果
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state b/Src/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state
new file mode 100644
index 0000000..1c983fc
Binary files /dev/null and b/Src/app/build/intermediates/incremental/debugAndroidTest-mergeJavaRes/merge-state differ
diff --git a/Src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties b/Src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties
new file mode 100644
index 0000000..39b6311
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Mon Dec 30 21:15:38 CST 2024
diff --git a/Src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml b/Src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml
new file mode 100644
index 0000000..57beabc
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml b/Src/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml
new file mode 100644
index 0000000..b7d7806
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/mergeDebugAndroidTestAssets/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml b/Src/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml
new file mode 100644
index 0000000..79fe105
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/mergeDebugAndroidTestJniLibFolders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml b/Src/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml
new file mode 100644
index 0000000..bc38452
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/mergeDebugAndroidTestShaders/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/mergeDebugAssets/merger.xml b/Src/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
index 72f9297..d472bb1 100644
--- a/Src/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
+++ b/Src/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/Src/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
index c31f0bf..e72442e 100644
--- a/Src/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
+++ b/Src/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
index 4acbccb..7fc4195 100644
--- a/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
+++ b/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
@@ -1,20 +1,22 @@
-#Wed Dec 25 15:46:07 CST 2024
-base.0=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex
-base.1=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\11\\classes.dex
-base.2=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\12\\classes.dex
-base.3=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\13\\classes.dex
-base.4=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\15\\classes.dex
-base.5=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\4\\classes.dex
-base.6=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex
-base.7=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\8\\classes.dex
-path.0=0/classes.dex
-path.1=11/classes.dex
-path.2=12/classes.dex
-path.3=13/classes.dex
-path.4=15/classes.dex
-path.5=4/classes.dex
-path.6=5/classes.dex
-path.7=8/classes.dex
+#Tue Dec 31 09:10:17 CST 2024
+base.0=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeExtDexDebug\\classes.dex
+base.1=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex
+base.2=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\11\\classes.dex
+base.3=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\12\\classes.dex
+base.4=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\13\\classes.dex
+base.5=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\15\\classes.dex
+base.6=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\4\\classes.dex
+base.7=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex
+base.8=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\8\\classes.dex
+path.0=classes.dex
+path.1=0/classes.dex
+path.2=11/classes.dex
+path.3=12/classes.dex
+path.4=13/classes.dex
+path.5=15/classes.dex
+path.6=4/classes.dex
+path.7=5/classes.dex
+path.8=8/classes.dex
renamed.0=classes.dex
renamed.1=classes2.dex
renamed.2=classes3.dex
@@ -23,3 +25,4 @@ renamed.4=classes5.dex
renamed.5=classes6.dex
renamed.6=classes7.dex
renamed.7=classes8.dex
+renamed.8=classes9.dex
diff --git a/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources
index b108116..86e2454 100644
Binary files a/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources and b/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources differ
diff --git a/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 b/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0
index 945a7c5..83e539e 100644
Binary files a/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 and b/Src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/javaResources0 differ
diff --git a/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt b/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt
new file mode 100644
index 0000000..bcd40d5
--- /dev/null
+++ b/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/dex-renamer-state.txt
@@ -0,0 +1,7 @@
+#Mon Dec 30 21:15:41 CST 2024
+base.0=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debugAndroidTest\\mergeProjectDexDebugAndroidTest\\0\\classes.dex
+base.1=D\:\\gitnote\\notes\\app\\build\\intermediates\\dex\\debugAndroidTest\\mergeProjectDexDebugAndroidTest\\13\\classes.dex
+path.0=0/classes.dex
+path.1=13/classes.dex
+renamed.0=classes.dex
+renamed.1=classes2.dex
diff --git a/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources b/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources
new file mode 100644
index 0000000..9b02803
Binary files /dev/null and b/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/androidResources differ
diff --git a/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 b/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0
new file mode 100644
index 0000000..945a7c5
Binary files /dev/null and b/Src/app/build/intermediates/incremental/packageDebugAndroidTest/tmp/debugAndroidTest/zip-cache/javaResources0 differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class
index 7e06d58..bc8c831 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class
index a462bda..1416093 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class
index 4c79d58..1a2c4bb 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class
index bd034c8..1587950 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesProvider.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesProvider.class
index f424c62..2d64390 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesProvider.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesProvider.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/UserDao.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/UserDao.class
index 484d5c9..7a40b58 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/UserDao.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/UserDao.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/LoginActivity.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/LoginActivity.class
index 0d06e91..0ce5e38 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/LoginActivity.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/LoginActivity.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/RegisterActivity.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/RegisterActivity.class
index 0e3a4a3..ff068e6 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/RegisterActivity.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/login/RegisterActivity.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class
index 299f9a1..75809b4 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class
index 6cc7740..0225f1c 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class
index 77306fc..5ab773f 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$NoteItemBgResources.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$NoteItemBgResources.class
index 58448d3..cd49e5c 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$NoteItemBgResources.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$NoteItemBgResources.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$TextAppearanceResources.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$TextAppearanceResources.class
index 3cae2c3..960604a 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$TextAppearanceResources.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$TextAppearanceResources.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$WidgetBgResources.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$WidgetBgResources.class
index cc95b54..0e017c8 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$WidgetBgResources.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/tool/ResourceParser$WidgetBgResources.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DateTimePicker.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DateTimePicker.class
index 6a0c37a..7fc0501 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DateTimePicker.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DateTimePicker.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/FoldersListAdapter$FolderListItem.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/FoldersListAdapter$FolderListItem.class
index 5547db8..077da95 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/FoldersListAdapter$FolderListItem.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/FoldersListAdapter$FolderListItem.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class
index 279d985..eba0567 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class
index bf39c8f..b4b8393 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class
index 157217c..b4791d6 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class
index 761848f..0503480 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$5.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$5.class
new file mode 100644
index 0000000..7ef5919
Binary files /dev/null and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$5.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$6.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$6.class
new file mode 100644
index 0000000..654148c
Binary files /dev/null and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$6.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$7.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$7.class
new file mode 100644
index 0000000..4832c70
Binary files /dev/null and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$7.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$8.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$8.class
new file mode 100644
index 0000000..cfa80d6
Binary files /dev/null and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$8.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class
index 62a99de..48209e9 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class
index d307cdd..84e16f2 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class
index 4cc4805..db0ef47 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class
index 673953c..6f10c11 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class
index fcb1b6c..bbadd31 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class
index 789acee..4296bdf 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class
index 8d6ae8a..e62d0c9 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class
index 25b5244..2df1137 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class
index d86c020..e96df11 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class
index 5011079..f449c88 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class
index d076238..a254504 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class
index ac17483..d8a5628 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ListEditState.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ListEditState.class
index 432ab5f..85c1e20 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ListEditState.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ListEditState.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class
index 3f5bb30..79cdd31 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class
index ee22c5c..6bcf931 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class
index e78035f..b3b1c7c 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class
index c30a7c8..7cf018d 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class
index 40adf05..92fe4c7 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class
index b106a99..7e13365 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class
index e5f6cd9..6d1fd5d 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.class
index 7bb89b1..1c14fa8 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity.class
index b0bad07..bda33c4 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesPreferenceActivity.class differ
diff --git a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/widget/NoteWidgetProvider.class b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/widget/NoteWidgetProvider.class
index 28908be..4d556ba 100644
Binary files a/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/widget/NoteWidgetProvider.class and b/Src/app/build/intermediates/javac/debug/classes/net/micode/notes/widget/NoteWidgetProvider.class differ
diff --git a/Src/app/build/intermediates/javac/debugAndroidTest/classes/net/micode/notes/test/BuildConfig.class b/Src/app/build/intermediates/javac/debugAndroidTest/classes/net/micode/notes/test/BuildConfig.class
new file mode 100644
index 0000000..3314cf8
Binary files /dev/null and b/Src/app/build/intermediates/javac/debugAndroidTest/classes/net/micode/notes/test/BuildConfig.class differ
diff --git a/Src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/Src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
index 85b7300..bfec808 100644
--- a/Src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
+++ b/Src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
@@ -11,252 +11,257 @@
9-->D:\gitnote\notes\app\src\main\AndroidManifest.xml
10
11
-12
-12-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:5-81
-12-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:22-78
-13
+12
+12-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:5-71
+12-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:22-68
+13
13-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:10:5-80
13-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:10:22-77
-14
-14-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:5-67
-14-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:22-64
-15
-15-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:5-72
-15-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:22-69
-16
-16-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:5-81
-16-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:22-78
-17
-18 D:\gitnote\notes\app\src\main\AndroidManifest.xml:15:5-135:19
-19 android:debuggable="true"
-20 android:icon="@drawable/icon_app"
-20-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:16:9-42
-21 android:label="@string/app_name"
-21-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:17:9-41
-22 android:testOnly="true" >
-23
-24
-25 D:\gitnote\notes\app\src\main\AndroidManifest.xml:20:9-27:20
-26 android:name="net.micode.notes.login.LoginActivity"
-26-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:21:13-48
-27 android:launchMode="singleTop" >
-27-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:22:13-43
-28
-28-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:23:13-26:29
-29
-29-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:24:17-69
-29-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:24:25-66
-30
-31
-31-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:25:17-77
-31-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:25:27-74
-32
-33
-34
-35
-36
-36-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:30:9-60
-36-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:30:19-57
-37
-38 D:\gitnote\notes\app\src\main\AndroidManifest.xml:32:9-38:55
-39 android:name="net.micode.notes.ui.NotesListActivity"
-39-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:33:13-49
-40 android:configChanges="keyboardHidden|orientation|screenSize"
-40-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:34:13-74
-41 android:label="@string/app_name"
-41-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:35:13-45
-42 android:launchMode="singleTop"
-42-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:36:13-43
-43 android:theme="@style/NoteTheme"
-43-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:37:13-45
-44 android:windowSoftInputMode="adjustPan" />
-44-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:38:13-52
-45
-46
-47 D:\gitnote\notes\app\src\main\AndroidManifest.xml:41:9-67:20
-48 android:name="net.micode.notes.ui.NoteEditActivity"
-48-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:42:13-48
-49 android:configChanges="keyboardHidden|orientation|screenSize"
-49-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:43:13-74
-50 android:launchMode="singleTop"
-50-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:44:13-43
-51 android:theme="@style/NoteTheme" >
-51-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:45:13-45
-52
-52-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:46:13-53:29
-52-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:47:17-38
-53
-53-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:49:17-69
-53-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:49:25-66
-54
-55
-55-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:17-76
-55-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:27-73
-56
-57
-57-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-78
-57-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:23-75
-58
-58-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-78
-58-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:23-75
-59
-60
-60-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:54:13-59:29
-61
-61-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:55:17-79
-61-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:55:25-76
-62
-63
-63-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:17-76
-63-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:27-73
-64
-65
-65-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-78
-65-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:23-75
-66
-66-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-78
-66-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:23-75
-67
-68
-68-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:60:13-63:29
-69
-69-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:61:17-71
-69-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:61:25-68
-70
-71
-71-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:17-76
-71-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:27-73
-72
-73
-74 D:\gitnote\notes\app\src\main\AndroidManifest.xml:64:13-66:54
-75 android:name="android.app.searchable"
-75-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:65:17-54
-76 android:resource="@xml/searchable" />
-76-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:66:17-51
-77
-78
-79
-80 D:\gitnote\notes\app\src\main\AndroidManifest.xml:70:9-73:43
-81 android:name="net.micode.notes.data.NotesProvider"
-81-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:71:13-63
-82 android:authorities="micode_notes"
-82-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:72:13-47
-83 android:multiprocess="true" />
-83-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:73:13-40
-84
-85
-86 D:\gitnote\notes\app\src\main\AndroidManifest.xml:76:9-86:20
-87 android:name="net.micode.notes.widget.NoteWidgetProvider_2x"
-87-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:77:13-57
-88 android:label="@string/app_widget2x2" >
-88-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:78:13-50
-89
-89-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:79:13-82:29
-90
-90-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:17-84
-90-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:25-81
-91
-91-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:17-85
-91-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:25-82
-92
-93
-94 D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:13-85:58
-95 android:name="android.appwidget.provider"
-95-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:84:17-58
-96 android:resource="@xml/widget_2x_info" />
-96-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:85:17-55
-97
-98 D:\gitnote\notes\app\src\main\AndroidManifest.xml:88:9-98:20
-99 android:name="net.micode.notes.widget.NoteWidgetProvider_4x"
-99-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:89:13-57
-100 android:label="@string/app_widget4x4" >
-100-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:90:13-50
-101
-101-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:79:13-82:29
-102
-102-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:17-84
-102-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:25-81
-103
-103-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:17-85
-103-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:25-82
-104
-105
-106 D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:13-85:58
-107 android:name="android.appwidget.provider"
-107-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:84:17-58
-108 android:resource="@xml/widget_4x_info" />
-108-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:85:17-55
-109
-110
-111
-112
-112-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:101:9-105:20
-112-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:101:19-55
-113
-113-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:102:13-104:29
-114
-114-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:17-79
-114-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:25-76
-115
-116
-117
-118
-119 D:\gitnote\notes\app\src\main\AndroidManifest.xml:108:9-110:41
-120 android:name="net.micode.notes.ui.AlarmReceiver"
-120-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:109:13-61
-121 android:process=":remote" />
-121-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:110:13-38
-122
-123
-124 D:\gitnote\notes\app\src\main\AndroidManifest.xml:113:9-117:87
-125 android:name="net.micode.notes.ui.AlarmAlertActivity"
-125-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:114:13-50
-126 android:label="@string/app_name"
-126-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:115:13-45
-127 android:launchMode="singleInstance"
-127-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:116:13-48
-128 android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar" />
-128-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:117:13-75
-129
-130
-131 D:\gitnote\notes\app\src\main\AndroidManifest.xml:120:9-124:72
-132 android:name="net.micode.notes.ui.NotesPreferenceActivity"
-132-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:121:13-71
-133 android:label="@string/preferences_title"
-133-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:122:13-54
-134 android:launchMode="singleTop"
-134-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:123:13-43
-135 android:theme="@android:style/Theme.Holo.Light" />
-135-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:124:13-60
-136
-137
-138 D:\gitnote\notes\app\src\main\AndroidManifest.xml:127:9-129:40
-139 android:name="net.micode.notes.gtask.remote.GTaskSyncService"
-139-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:128:13-74
-140 android:exported="false" />
-140-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:129:13-37
-141
-142
-143 D:\gitnote\notes\app\src\main\AndroidManifest.xml:132:9-134:52
-144 android:name="android.app.default_searchable"
-144-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:133:13-58
-145 android:value=".ui.NoteEditActivity" />
-145-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:134:13-49
-146
-147
-148
+14
+14-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:5-81
+14-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:22-78
+15
+15-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:5-80
+15-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:22-77
+16
+16-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:5-67
+16-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:22-64
+17
+17-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:14:5-72
+17-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:14:22-69
+18
+18-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:15:5-81
+18-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:15:22-78
+19
+20 D:\gitnote\notes\app\src\main\AndroidManifest.xml:17:5-137:19
+21 android:debuggable="true"
+22 android:icon="@drawable/icon_app"
+22-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:18:9-42
+23 android:label="@string/app_name" >
+23-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:19:9-41
+24
+25
+26 D:\gitnote\notes\app\src\main\AndroidManifest.xml:22:9-29:20
+27 android:name="net.micode.notes.login.LoginActivity"
+27-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:23:13-48
+28 android:launchMode="singleTop" >
+28-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:24:13-43
+29
+29-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:25:13-28:29
+30
+30-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:26:17-69
+30-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:26:25-66
+31
+32
+32-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:27:17-77
+32-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:27:27-74
+33
+34
+35
+36
+37
+37-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:32:9-60
+37-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:32:19-57
+38
+39 D:\gitnote\notes\app\src\main\AndroidManifest.xml:34:9-40:55
+40 android:name="net.micode.notes.ui.NotesListActivity"
+40-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:35:13-49
+41 android:configChanges="keyboardHidden|orientation|screenSize"
+41-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:36:13-74
+42 android:label="@string/app_name"
+42-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:37:13-45
+43 android:launchMode="singleTop"
+43-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:38:13-43
+44 android:theme="@style/NoteTheme"
+44-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:39:13-45
+45 android:windowSoftInputMode="adjustPan" />
+45-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:40:13-52
+46
+47
+48 D:\gitnote\notes\app\src\main\AndroidManifest.xml:43:9-69:20
+49 android:name="net.micode.notes.ui.NoteEditActivity"
+49-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:44:13-48
+50 android:configChanges="keyboardHidden|orientation|screenSize"
+50-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:45:13-74
+51 android:launchMode="singleTop"
+51-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:46:13-43
+52 android:theme="@style/NoteTheme" >
+52-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:47:13-45
+53
+53-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:48:13-55:29
+53-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:49:17-38
+54
+54-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-69
+54-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:25-66
+55
+56
+56-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:17-76
+56-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:27-73
+57
+58
+58-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:17-78
+58-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:23-75
+59
+59-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:17-78
+59-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:23-75
+60
+61
+61-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:56:13-61:29
+62
+62-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:57:17-79
+62-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:57:25-76
+63
+64
+64-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:17-76
+64-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:27-73
+65
+66
+66-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:17-78
+66-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:23-75
+67
+67-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:17-78
+67-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:23-75
+68
+69
+69-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:62:13-65:29
+70
+70-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:63:17-71
+70-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:63:25-68
+71
+72
+72-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:17-76
+72-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:27-73
+73
+74
+75 D:\gitnote\notes\app\src\main\AndroidManifest.xml:66:13-68:54
+76 android:name="android.app.searchable"
+76-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:67:17-54
+77 android:resource="@xml/searchable" />
+77-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:68:17-51
+78
+79
+80
+81 D:\gitnote\notes\app\src\main\AndroidManifest.xml:72:9-75:43
+82 android:name="net.micode.notes.data.NotesProvider"
+82-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:73:13-63
+83 android:authorities="micode_notes"
+83-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:74:13-47
+84 android:multiprocess="true" />
+84-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:75:13-40
+85
+86
+87 D:\gitnote\notes\app\src\main\AndroidManifest.xml:78:9-88:20
+88 android:name="net.micode.notes.widget.NoteWidgetProvider_2x"
+88-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:79:13-57
+89 android:label="@string/app_widget2x2" >
+89-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:13-50
+90
+90-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:13-84:29
+91
+91-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:82:17-84
+91-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:82:25-81
+92
+92-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:17-85
+92-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:25-82
+93
+94
+95 D:\gitnote\notes\app\src\main\AndroidManifest.xml:85:13-87:58
+96 android:name="android.appwidget.provider"
+96-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:86:17-58
+97 android:resource="@xml/widget_2x_info" />
+97-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:87:17-55
+98
+99 D:\gitnote\notes\app\src\main\AndroidManifest.xml:90:9-100:20
+100 android:name="net.micode.notes.widget.NoteWidgetProvider_4x"
+100-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:91:13-57
+101 android:label="@string/app_widget4x4" >
+101-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:92:13-50
+102
+102-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:13-84:29
+103
+103-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:82:17-84
+103-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:82:25-81
+104
+104-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:17-85
+104-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:25-82
+105
+106
+107 D:\gitnote\notes\app\src\main\AndroidManifest.xml:85:13-87:58
+108 android:name="android.appwidget.provider"
+108-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:86:17-58
+109 android:resource="@xml/widget_4x_info" />
+109-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:87:17-55
+110
+111
+112
+113
+113-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:9-107:20
+113-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:19-55
+114
+114-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:104:13-106:29
+115
+115-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:105:17-79
+115-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:105:25-76
+116
+117
+118
+119
+120 D:\gitnote\notes\app\src\main\AndroidManifest.xml:110:9-112:41
+121 android:name="net.micode.notes.ui.AlarmReceiver"
+121-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:111:13-61
+122 android:process=":remote" />
+122-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:112:13-38
+123
+124
+125 D:\gitnote\notes\app\src\main\AndroidManifest.xml:115:9-119:87
+126 android:name="net.micode.notes.ui.AlarmAlertActivity"
+126-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:116:13-50
+127 android:label="@string/app_name"
+127-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:117:13-45
+128 android:launchMode="singleInstance"
+128-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:118:13-48
+129 android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar" />
+129-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:119:13-75
+130
+131
+132 D:\gitnote\notes\app\src\main\AndroidManifest.xml:122:9-126:72
+133 android:name="net.micode.notes.ui.NotesPreferenceActivity"
+133-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:123:13-71
+134 android:label="@string/preferences_title"
+134-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:124:13-54
+135 android:launchMode="singleTop"
+135-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:125:13-43
+136 android:theme="@android:style/Theme.Holo.Light" />
+136-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:126:13-60
+137
+138
+139 D:\gitnote\notes\app\src\main\AndroidManifest.xml:129:9-131:40
+140 android:name="net.micode.notes.gtask.remote.GTaskSyncService"
+140-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:130:13-74
+141 android:exported="false" />
+141-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:131:13-37
+142
+143
+144 D:\gitnote\notes\app\src\main\AndroidManifest.xml:134:9-136:52
+145 android:name="android.app.default_searchable"
+145-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:135:13-58
+146 android:value=".ui.NoteEditActivity" />
+146-->D:\gitnote\notes\app\src\main\AndroidManifest.xml:136:13-49
+147
+148
+149
diff --git a/Src/app/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt b/Src/app/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt
new file mode 100644
index 0000000..bcf6df6
--- /dev/null
+++ b/Src/app/build/intermediates/manifest_merge_blame_file/debugAndroidTest/manifest-merger-blame-debug-androidTest-report.txt
@@ -0,0 +1,32 @@
+1
+2
+4
+5 D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:5:5-74
+6 android:minSdkVersion="21"
+6-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:5:15-41
+7 android:targetSdkVersion="21" />
+7-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:5:42-71
+8
+9 D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:11:5-15:66
+10 android:name="android.test.InstrumentationTestRunner"
+10-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:11:22-75
+11 android:functionalTest="false"
+11-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:14:22-52
+12 android:handleProfiling="false"
+12-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:13:22-53
+13 android:label="Tests for net.micode.notes"
+13-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:15:22-64
+14 android:targetPackage="net.micode.notes" />
+14-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:12:22-62
+15
+16
+16-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:7:5-9:19
+17
+17-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:8:9-60
+17-->D:\gitnote\notes\app\build\intermediates\tmp\manifest\androidTest\debug\tempFile1ProcessTestManifest516058341142764059.xml:8:23-57
+18
+19
+20
diff --git a/Src/app/build/intermediates/merged_java_res/debug/base.jar b/Src/app/build/intermediates/merged_java_res/debug/base.jar
index 15cb0ec..2f8df68 100644
Binary files a/Src/app/build/intermediates/merged_java_res/debug/base.jar and b/Src/app/build/intermediates/merged_java_res/debug/base.jar differ
diff --git a/Src/app/build/intermediates/merged_java_res/debugAndroidTest/feature-app.jar b/Src/app/build/intermediates/merged_java_res/debugAndroidTest/feature-app.jar
new file mode 100644
index 0000000..15cb0ec
Binary files /dev/null and b/Src/app/build/intermediates/merged_java_res/debugAndroidTest/feature-app.jar differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libjnidispatch.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libjnidispatch.so
new file mode 100644
index 0000000..61553b2
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libvosk.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libvosk.so
new file mode 100644
index 0000000..0746b58
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/arm64-v8a/libvosk.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libjnidispatch.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libjnidispatch.so
new file mode 100644
index 0000000..0683481
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libvosk.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libvosk.so
new file mode 100644
index 0000000..d2daebf
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/armeabi-v7a/libvosk.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/x86/libjnidispatch.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86/libjnidispatch.so
new file mode 100644
index 0000000..8587fdf
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/x86/libvosk.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86/libvosk.so
new file mode 100644
index 0000000..6ffc041
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86/libvosk.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/x86_64/libjnidispatch.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86_64/libjnidispatch.so
new file mode 100644
index 0000000..e3475dc
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86_64/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/merged_jni_libs/debug/out/x86_64/libvosk.so b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86_64/libvosk.so
new file mode 100644
index 0000000..3ecff4c
Binary files /dev/null and b/Src/app/build/intermediates/merged_jni_libs/debug/out/x86_64/libvosk.so differ
diff --git a/Src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/Src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml
index e88b064..e40c6ac 100644
--- a/Src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml
+++ b/Src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml
@@ -9,6 +9,8 @@
android:targetSdkVersion="21" />
+
+
@@ -18,8 +20,7 @@
+ android:label="@string/app_name" >
+
+
@@ -18,8 +20,7 @@
+ android:label="@string/app_name" >
+
+
@@ -18,8 +20,7 @@
+ android:label="@string/app_name" >
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Src/app/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json b/Src/app/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json
new file mode 100644
index 0000000..890157a
--- /dev/null
+++ b/Src/app/build/intermediates/packaged_manifests/debugAndroidTest/output-metadata.json
@@ -0,0 +1,18 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PACKAGED_MANIFESTS",
+ "kind": "Directory"
+ },
+ "applicationId": "net.micode.notes.test",
+ "variantName": "debugAndroidTest",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "outputFile": "AndroidManifest.xml"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/Src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ b/Src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_
index 765038e..7045225 100644
Binary files a/Src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ and b/Src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ differ
diff --git a/Src/app/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json b/Src/app/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json
new file mode 100644
index 0000000..9932b33
--- /dev/null
+++ b/Src/app/build/intermediates/processed_res/debugAndroidTest/out/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PROCESSED_RES",
+ "kind": "Directory"
+ },
+ "applicationId": "net.micode.notes.test",
+ "variantName": "debugAndroidTest",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 0,
+ "versionName": "",
+ "outputFile": "resources-debugAndroidTest.ap_"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/Src/app/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_ b/Src/app/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_
new file mode 100644
index 0000000..70d7578
Binary files /dev/null and b/Src/app/build/intermediates/processed_res/debugAndroidTest/out/resources-debugAndroidTest.ap_ differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/cba913630635420aa7f9c9bf5f391c38d34581d6331fa0a4844449900e1cf108_6.jar b/Src/app/build/intermediates/project_dex_archive/debug/out/cba913630635420aa7f9c9bf5f391c38d34581d6331fa0a4844449900e1cf108_6.jar
new file mode 100644
index 0000000..98de8ac
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debug/out/cba913630635420aa7f9c9bf5f391c38d34581d6331fa0a4844449900e1cf108_6.jar differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/cba913630635420aa7f9c9bf5f391c38d34581d6331fa0a4844449900e1cf108_9.jar b/Src/app/build/intermediates/project_dex_archive/debug/out/cba913630635420aa7f9c9bf5f391c38d34581d6331fa0a4844449900e1cf108_9.jar
new file mode 100644
index 0000000..400ac42
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debug/out/cba913630635420aa7f9c9bf5f391c38d34581d6331fa0a4844449900e1cf108_9.jar differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/BuildConfig.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/BuildConfig.dex
index 4a21e88..5b9ec37 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/BuildConfig.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/BuildConfig.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex
index 65c70d4..72bc8ea 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex
index bf53e70..97c42db 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex
index 1c0dee7..260d233 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex
index 44c573f..a1a184b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex
index ed3a6b9..725bd14 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex
index 215df7a..653cc3c 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex
index 396232a..a4eff90 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex
index 03d2859..4e6a5fc 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex
index d566335..0d3df47 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex
index d9fe1d7..c527158 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/UserDao.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/UserDao.dex
index 152a39b..571ef7e 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/UserDao.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/UserDao.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex
index df7708c..84067c0 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex
index 8aec629..721b43f 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex
index 72010fb..9e49ba0 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex
index d38b854..6804e06 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex
index 9f5a261..9400bdf 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex
index 1d5a695..11953c9 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex
index 4e0b04c..81a1f29 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex
index ebf757e..159345b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex
index 2d65fa9..0da245e 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex
index 9db738a..ce3e592 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex
index c87c426..0a6c9f3 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex
index 45f6337..40364f8 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex
index 0cc357c..3d07423 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex
index d27e182..3eb013f 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex
index e7a7518..9199cb5 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/LoginActivity.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/LoginActivity.dex
index 36f5f23..a336c00 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/LoginActivity.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/LoginActivity.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/RegisterActivity.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/RegisterActivity.dex
index 82b5a94..1e37180 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/RegisterActivity.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/login/RegisterActivity.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex
index 022aa0e..0916f8d 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex
index e2eacc6..ddfca72 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex
index 4cc87c9..1041032 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex
index 50063bb..fab632f 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex
index 4e7bb85..6bdf037 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex
index b5daad3..cba9f35 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex
index 7c4feec..9b1d285 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex
index a2b6fc8..b4909a8 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex
index 9bc0305..8edbdd0 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex
index e26dd15..8518cbb 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex
index 46b05cb..d8ead5a 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex
index 51dd5ec..0373642 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex
index 9f95008..582da05 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex
index 599a2d9..9835dfe 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex
index 81dfa10..73ac33b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex
index 48d481c..0475b8f 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex
index b503840..c1d1fb5 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex
index 7de9e56..cb0da3b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex
index be864ae..2a2d1f1 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex
index e3a2bee..626767b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex
index 0df2655..9fefbd1 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex
index c848e50..81a0a0a 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex
index 1478fc6..fcb36b2 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex
index d9419a5..e91499e 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex
index 8f49436..8da49d7 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex
index cd10866..9269075 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex
index 5679e2a..a088bf7 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex
index 16b2eec..f3c80b6 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex
index 4a13d6c..987c138 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex
index 1b1a53f..880422f 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex
index d380180..d97dfe2 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex
index f7d1637..4d97325 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex
index 8fd28d7..4298401 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$5.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$5.dex
new file mode 100644
index 0000000..0f2dc54
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$5.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$6.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$6.dex
new file mode 100644
index 0000000..6f7d53f
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$6.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$7.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$7.dex
new file mode 100644
index 0000000..da06dcc
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$7.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$8.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$8.dex
new file mode 100644
index 0000000..f1ef689
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$8.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex
index a4a434e..6218a5d 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex
index 2cf6f29..a837637 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex
index c8bc061..34fdf4c 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex
index 1323e64..a4652b6 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex
index a5eb3f6..419e874 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex
index 306819d..4ea1f1c 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex
index 88d2d13..9ad03be 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex
index b879b70..ff0ee50 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex
index dc98777..6e3f73f 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex
index 3c450f8..5bcc359 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex
index 0d553f1..95c5403 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex
index 1d42e21..7163585 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex
index 55648d6..30218f3 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex
index e2d10f2..b5a3f69 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex
index 0adae7c..d889e09 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex
index 66bf1d7..855be54 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex
index 3e18dc1..62df7e6 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex
index 5af6750..5e23bc2 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex
index c5c21f3..400ec25 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex
index 2df3534..df3658b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex
index 7554024..80d399b 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex
index 01fd414..4a34bf3 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex
index f8c6e98..c8545a6 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex
index 9028168..cd264e6 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex
index f4f8ba6..9c3f3e1 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex
index 93dc51b..e872835 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex
index fc3d112..72b9c8c 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex
index 2771543..1d68438 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex
index cdab20e..098baeb 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex
index 4a3de70..d35a2e7 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex
index a0f8cde..d03dbfe 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex
index 9988e0c..a5ac2aa 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex
index 630719c..eacad51 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex
index 7b11437..d29704c 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex
index cef94d3..6f5d8b3 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex
index bffea07..019aa97 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex
index 00f27a1..a91defb 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex
index e6c87cf..2831f5a 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex
index 53be0a5..98d2168 100644
Binary files a/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex and b/Src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debugAndroidTest/out/9beb0e8a81eac172d79c8e543de1eecc1ee027841815a239df7ee9481370a50b_2.jar b/Src/app/build/intermediates/project_dex_archive/debugAndroidTest/out/9beb0e8a81eac172d79c8e543de1eecc1ee027841815a239df7ee9481370a50b_2.jar
new file mode 100644
index 0000000..d7cdf1c
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debugAndroidTest/out/9beb0e8a81eac172d79c8e543de1eecc1ee027841815a239df7ee9481370a50b_2.jar differ
diff --git a/Src/app/build/intermediates/project_dex_archive/debugAndroidTest/out/net/micode/notes/test/BuildConfig.dex b/Src/app/build/intermediates/project_dex_archive/debugAndroidTest/out/net/micode/notes/test/BuildConfig.dex
new file mode 100644
index 0000000..13be3cd
Binary files /dev/null and b/Src/app/build/intermediates/project_dex_archive/debugAndroidTest/out/net/micode/notes/test/BuildConfig.dex differ
diff --git a/Src/app/build/intermediates/runtime_symbol_list/debug/R.txt b/Src/app/build/intermediates/runtime_symbol_list/debug/R.txt
index 085c72a..a0332c5 100644
--- a/Src/app/build/intermediates/runtime_symbol_list/debug/R.txt
+++ b/Src/app/build/intermediates/runtime_symbol_list/debug/R.txt
@@ -3,12 +3,12 @@ int array menu_share_ways 0x7f010001
int color background_color 0x7f020000
int color button_color 0x7f020001
int color button_text_color 0x7f020002
-int color hint_color 0x7f020006
-int color primary_text_dark 0x7f020003
-int color secondary_text_dark 0x7f020004
-int color text_color 0x7f020007
-int color text_color_state_list 0x7f020008
-int color user_query_highlight 0x7f020005
+int color hint_color 0x7f020003
+int color primary_text_dark 0x7f020004
+int color secondary_text_dark 0x7f020005
+int color text_color 0x7f020006
+int color text_color_state_list 0x7f020007
+int color user_query_highlight 0x7f020008
int dimen text_font_size_large 0x7f030000
int dimen text_font_size_medium 0x7f030001
int dimen text_font_size_normal 0x7f030002
@@ -37,53 +37,54 @@ int drawable font_normal 0x7f040013
int drawable font_size_selector_bg 0x7f040014
int drawable font_small 0x7f040015
int drawable font_super 0x7f040016
-int drawable ic_warning 0x7f040017
-int drawable icon_app 0x7f040018
-int drawable list_background 0x7f040019
-int drawable list_blue_down 0x7f04001a
-int drawable list_blue_middle 0x7f04001b
-int drawable list_blue_single 0x7f04001c
-int drawable list_blue_up 0x7f04001d
-int drawable list_folder 0x7f04001e
-int drawable list_footer_bg 0x7f04001f
-int drawable list_green_down 0x7f040020
-int drawable list_green_middle 0x7f040021
-int drawable list_green_single 0x7f040022
-int drawable list_green_up 0x7f040023
-int drawable list_red_down 0x7f040024
-int drawable list_red_middle 0x7f040025
-int drawable list_red_single 0x7f040026
-int drawable list_red_up 0x7f040027
-int drawable list_white_down 0x7f040028
-int drawable list_white_middle 0x7f040029
-int drawable list_white_single 0x7f04002a
-int drawable list_white_up 0x7f04002b
-int drawable list_yellow_down 0x7f04002c
-int drawable list_yellow_middle 0x7f04002d
-int drawable list_yellow_single 0x7f04002e
-int drawable list_yellow_up 0x7f04002f
-int drawable menu_delete 0x7f040030
-int drawable menu_move 0x7f040031
-int drawable new_note 0x7f040032
-int drawable new_note_normal 0x7f040033
-int drawable new_note_pressed 0x7f040034
-int drawable note_edit_color_selector_panel 0x7f040035
-int drawable notification 0x7f040036
-int drawable search_result 0x7f040037
-int drawable selected 0x7f040038
-int drawable title_alert 0x7f040039
-int drawable title_bar_bg 0x7f04003a
-int drawable toast_background 0x7f04003b
-int drawable widget_2x_blue 0x7f04003c
-int drawable widget_2x_green 0x7f04003d
-int drawable widget_2x_red 0x7f04003e
-int drawable widget_2x_white 0x7f04003f
-int drawable widget_2x_yellow 0x7f040040
-int drawable widget_4x_blue 0x7f040041
-int drawable widget_4x_green 0x7f040042
-int drawable widget_4x_red 0x7f040043
-int drawable widget_4x_white 0x7f040044
-int drawable widget_4x_yellow 0x7f040045
+int drawable ic_audio 0x7f040017
+int drawable ic_warning 0x7f040018
+int drawable icon_app 0x7f040019
+int drawable list_background 0x7f04001a
+int drawable list_blue_down 0x7f04001b
+int drawable list_blue_middle 0x7f04001c
+int drawable list_blue_single 0x7f04001d
+int drawable list_blue_up 0x7f04001e
+int drawable list_folder 0x7f04001f
+int drawable list_footer_bg 0x7f040020
+int drawable list_green_down 0x7f040021
+int drawable list_green_middle 0x7f040022
+int drawable list_green_single 0x7f040023
+int drawable list_green_up 0x7f040024
+int drawable list_red_down 0x7f040025
+int drawable list_red_middle 0x7f040026
+int drawable list_red_single 0x7f040027
+int drawable list_red_up 0x7f040028
+int drawable list_white_down 0x7f040029
+int drawable list_white_middle 0x7f04002a
+int drawable list_white_single 0x7f04002b
+int drawable list_white_up 0x7f04002c
+int drawable list_yellow_down 0x7f04002d
+int drawable list_yellow_middle 0x7f04002e
+int drawable list_yellow_single 0x7f04002f
+int drawable list_yellow_up 0x7f040030
+int drawable menu_delete 0x7f040031
+int drawable menu_move 0x7f040032
+int drawable new_note 0x7f040033
+int drawable new_note_normal 0x7f040034
+int drawable new_note_pressed 0x7f040035
+int drawable note_edit_color_selector_panel 0x7f040036
+int drawable notification 0x7f040037
+int drawable search_result 0x7f040038
+int drawable selected 0x7f040039
+int drawable title_alert 0x7f04003a
+int drawable title_bar_bg 0x7f04003b
+int drawable toast_background 0x7f04003c
+int drawable widget_2x_blue 0x7f04003d
+int drawable widget_2x_green 0x7f04003e
+int drawable widget_2x_red 0x7f04003f
+int drawable widget_2x_white 0x7f040040
+int drawable widget_2x_yellow 0x7f040041
+int drawable widget_4x_blue 0x7f040042
+int drawable widget_4x_green 0x7f040043
+int drawable widget_4x_red 0x7f040044
+int drawable widget_4x_white 0x7f040045
+int drawable widget_4x_yellow 0x7f040046
int id account_dialog_subtitle 0x7f050000
int id account_dialog_title 0x7f050001
int id action_select_all 0x7f050002
@@ -92,75 +93,78 @@ int id amPm 0x7f050004
int id btnBackToLogin 0x7f050005
int id btnLogin 0x7f050006
int id btnRegister 0x7f050007
-int id btn_new_note 0x7f050008
-int id btn_set_bg_color 0x7f050009
-int id cb_edit_item 0x7f05000a
-int id date 0x7f05000b
-int id delete 0x7f05000c
-int id etLoginPassword 0x7f05000d
-int id etLoginUsername 0x7f05000e
-int id etPassword 0x7f05000f
-int id etUsername 0x7f050010
-int id et_edit_text 0x7f050011
-int id et_foler_name 0x7f050012
-int id font_size_selector 0x7f050013
-int id hour 0x7f050014
-int id imageView 0x7f050015
-int id iv_alert_icon 0x7f050016
-int id iv_bg_blue 0x7f050017
-int id iv_bg_blue_select 0x7f050018
-int id iv_bg_green 0x7f050019
-int id iv_bg_green_select 0x7f05001a
-int id iv_bg_red 0x7f05001b
-int id iv_bg_red_select 0x7f05001c
-int id iv_bg_white 0x7f05001d
-int id iv_bg_white_select 0x7f05001e
-int id iv_bg_yellow 0x7f05001f
-int id iv_bg_yellow_select 0x7f050020
-int id iv_large_select 0x7f050021
-int id iv_medium_select 0x7f050022
-int id iv_small_select 0x7f050023
-int id iv_super_select 0x7f050024
-int id ll_font_large 0x7f050025
-int id ll_font_normal 0x7f050026
-int id ll_font_small 0x7f050027
-int id ll_font_super 0x7f050028
-int id menu_alert 0x7f050029
-int id menu_delete 0x7f05002a
-int id menu_delete_remind 0x7f05002b
-int id menu_export_text 0x7f05002c
-int id menu_font_size 0x7f05002d
-int id menu_list_mode 0x7f05002e
-int id menu_new_folder 0x7f05002f
-int id menu_new_note 0x7f050030
-int id menu_search 0x7f050031
-int id menu_send_to_desktop 0x7f050032
-int id menu_setting 0x7f050033
-int id menu_share 0x7f050034
-int id menu_sync 0x7f050035
-int id minute 0x7f050036
-int id move 0x7f050037
-int id navigation_bar 0x7f050038
-int id note_bg_color_selector 0x7f050039
-int id note_edit_list 0x7f05003a
-int id note_edit_view 0x7f05003b
-int id note_item 0x7f05003c
-int id note_title 0x7f05003d
-int id notes_list 0x7f05003e
-int id prefenerece_sync_status_textview 0x7f05003f
-int id preference_sync_button 0x7f050040
-int id selection_menu 0x7f050041
-int id sv_note_edit 0x7f050042
-int id textView 0x7f050043
-int id tv_alert_date 0x7f050044
-int id tv_folder_name 0x7f050045
-int id tv_modified_date 0x7f050046
-int id tv_name 0x7f050047
-int id tv_time 0x7f050048
-int id tv_title 0x7f050049
-int id tv_title_bar 0x7f05004a
-int id widget_bg_image 0x7f05004b
-int id widget_text 0x7f05004c
+int id btn_logout 0x7f050008
+int id btn_new_note 0x7f050009
+int id btn_set_bg_color 0x7f05000a
+int id cb_edit_item 0x7f05000b
+int id date 0x7f05000c
+int id delete 0x7f05000d
+int id etLoginPassword 0x7f05000e
+int id etLoginUsername 0x7f05000f
+int id etPassword 0x7f050010
+int id etUsername 0x7f050011
+int id et_edit_text 0x7f050012
+int id et_foler_name 0x7f050013
+int id font_size_selector 0x7f050014
+int id hour 0x7f050015
+int id imageView 0x7f050016
+int id iv_alert_icon 0x7f050017
+int id iv_bg_blue 0x7f050018
+int id iv_bg_blue_select 0x7f050019
+int id iv_bg_green 0x7f05001a
+int id iv_bg_green_select 0x7f05001b
+int id iv_bg_red 0x7f05001c
+int id iv_bg_red_select 0x7f05001d
+int id iv_bg_white 0x7f05001e
+int id iv_bg_white_select 0x7f05001f
+int id iv_bg_yellow 0x7f050020
+int id iv_bg_yellow_select 0x7f050021
+int id iv_large_select 0x7f050022
+int id iv_medium_select 0x7f050023
+int id iv_small_select 0x7f050024
+int id iv_super_select 0x7f050025
+int id ll_font_large 0x7f050026
+int id ll_font_normal 0x7f050027
+int id ll_font_small 0x7f050028
+int id ll_font_super 0x7f050029
+int id menu_alert 0x7f05002a
+int id menu_delete 0x7f05002b
+int id menu_delete_remind 0x7f05002c
+int id menu_export_text 0x7f05002d
+int id menu_font_size 0x7f05002e
+int id menu_list_mode 0x7f05002f
+int id menu_new_folder 0x7f050030
+int id menu_new_note 0x7f050031
+int id menu_search 0x7f050032
+int id menu_send_to_desktop 0x7f050033
+int id menu_setting 0x7f050034
+int id menu_share 0x7f050035
+int id menu_sync 0x7f050036
+int id minute 0x7f050037
+int id move 0x7f050038
+int id navigation_bar 0x7f050039
+int id note_bg_color_selector 0x7f05003a
+int id note_edit_list 0x7f05003b
+int id note_edit_view 0x7f05003c
+int id note_item 0x7f05003d
+int id note_title 0x7f05003e
+int id notes_list 0x7f05003f
+int id prefenerece_sync_status_textview 0x7f050040
+int id preference_sync_button 0x7f050041
+int id record_audio_btn 0x7f050042
+int id selection_menu 0x7f050043
+int id speech_to_text_btn 0x7f050044
+int id sv_note_edit 0x7f050045
+int id textView 0x7f050046
+int id tv_alert_date 0x7f050047
+int id tv_folder_name 0x7f050048
+int id tv_modified_date 0x7f050049
+int id tv_name 0x7f05004a
+int id tv_time 0x7f05004b
+int id tv_title 0x7f05004c
+int id tv_title_bar 0x7f05004d
+int id widget_bg_image 0x7f05004e
+int id widget_text 0x7f05004f
int layout account_dialog_title 0x7f060000
int layout activity_login 0x7f060001
int layout activity_register 0x7f060002
@@ -289,18 +293,18 @@ int string ticker_success 0x7f0a0062
int string ticker_syncing 0x7f0a0063
int string widget_havenot_content 0x7f0a0064
int string widget_under_visit_mode 0x7f0a0065
-int style CustomEditTextStyle 0x7f0b000b
-int style HighlightTextAppearancePrimary 0x7f0b0000
-int style HighlightTextAppearanceSecondary 0x7f0b0001
-int style NoteActionBarStyle 0x7f0b0002
-int style NoteTheme 0x7f0b0003
-int style TextAppearanceLarge 0x7f0b0004
-int style TextAppearanceMedium 0x7f0b0005
-int style TextAppearanceNormal 0x7f0b0006
-int style TextAppearancePrimaryItem 0x7f0b0007
-int style TextAppearanceSecondaryItem 0x7f0b0008
-int style TextAppearanceSuper 0x7f0b0009
-int style TextAppearanceUnderMenuIcon 0x7f0b000a
+int style CustomEditTextStyle 0x7f0b0000
+int style HighlightTextAppearancePrimary 0x7f0b0001
+int style HighlightTextAppearanceSecondary 0x7f0b0002
+int style NoteActionBarStyle 0x7f0b0003
+int style NoteTheme 0x7f0b0004
+int style TextAppearanceLarge 0x7f0b0005
+int style TextAppearanceMedium 0x7f0b0006
+int style TextAppearanceNormal 0x7f0b0007
+int style TextAppearancePrimaryItem 0x7f0b0008
+int style TextAppearanceSecondaryItem 0x7f0b0009
+int style TextAppearanceSuper 0x7f0b000a
+int style TextAppearanceUnderMenuIcon 0x7f0b000b
int xml preferences 0x7f0c0000
int xml searchable 0x7f0c0001
int xml widget_2x_info 0x7f0c0002
diff --git a/Src/app/build/intermediates/runtime_symbol_list/debugAndroidTest/R.txt b/Src/app/build/intermediates/runtime_symbol_list/debugAndroidTest/R.txt
new file mode 100644
index 0000000..e69de29
diff --git a/Src/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json b/Src/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json
index 51f6368..bb4deaa 100644
--- a/Src/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json
+++ b/Src/app/build/intermediates/signing_config_versions/debug/signing-config-versions.json
@@ -1 +1 @@
-{"enableV1Signing":false,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false}
\ No newline at end of file
+{"enableV1Signing":true,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false}
\ No newline at end of file
diff --git a/Src/app/build/intermediates/signing_config_versions/debugAndroidTest/signing-config-versions.json b/Src/app/build/intermediates/signing_config_versions/debugAndroidTest/signing-config-versions.json
new file mode 100644
index 0000000..bb4deaa
--- /dev/null
+++ b/Src/app/build/intermediates/signing_config_versions/debugAndroidTest/signing-config-versions.json
@@ -0,0 +1 @@
+{"enableV1Signing":true,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false}
\ No newline at end of file
diff --git a/Src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt b/Src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
new file mode 100644
index 0000000..c7e7b60
--- /dev/null
+++ b/Src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
@@ -0,0 +1,5 @@
+net.micode.notes.test.app-androidTest-0 D:\gitnote\notes\app\build\generated\res\resValues\androidTest\debug
+net.micode.notes.test.app-androidTest-1 D:\gitnote\notes\app\build\generated\res\rs\androidTest\debug
+net.micode.notes.test.app-mergeDebugAndroidTestResources-2 D:\gitnote\notes\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir
+net.micode.notes.test.app-mergeDebugAndroidTestResources-3 D:\gitnote\notes\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\stripped.dir
+net.micode.notes.test.app-merged_res-4 D:\gitnote\notes\app\build\intermediates\merged_res\debugAndroidTest
diff --git a/Src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt b/Src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
index 4bac211..3477d96 100644
--- a/Src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
+++ b/Src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
@@ -1,307 +1,311 @@
+net.micode.notes:xml/widget_4x_info = 0x7f0c0003
+net.micode.notes:xml/preferences = 0x7f0c0000
+net.micode.notes:style/TextAppearanceSecondaryItem = 0x7f0b0009
+net.micode.notes:style/TextAppearanceNormal = 0x7f0b0007
+net.micode.notes:style/TextAppearanceLarge = 0x7f0b0005
+net.micode.notes:style/HighlightTextAppearancePrimary = 0x7f0b0001
+net.micode.notes:string/widget_havenot_content = 0x7f0a0064
+net.micode.notes:string/ticker_syncing = 0x7f0a0063
net.micode.notes:string/ticker_success = 0x7f0a0062
-net.micode.notes:string/preferences_menu_remove_account = 0x7f0a0052
-net.micode.notes:color/hint_color = 0x7f020006
-net.micode.notes:string/menu_deselect_all = 0x7f0a0022
+net.micode.notes:style/HighlightTextAppearanceSecondary = 0x7f0b0002
+net.micode.notes:string/ticker_cancel = 0x7f0a0060
net.micode.notes:string/sync_progress_syncing = 0x7f0a005f
-net.micode.notes:string/file_path = 0x7f0a0016
-net.micode.notes:layout/note_list = 0x7f06000b
-net.micode.notes:string/preferences_account_summary = 0x7f0a0044
-net.micode.notes:xml/preferences = 0x7f0c0000
-net.micode.notes:id/iv_bg_white = 0x7f05001d
-net.micode.notes:string/menu_export_text = 0x7f0a0023
-net.micode.notes:string/note_alert_expired = 0x7f0a003b
-net.micode.notes:string/note_link_other = 0x7f0a003d
-net.micode.notes:style/HighlightTextAppearancePrimary = 0x7f0b0000
-net.micode.notes:string/menu_sync = 0x7f0a0038
-net.micode.notes:string/preferences_menu_cancel = 0x7f0a0050
net.micode.notes:string/sync_progress_init_list = 0x7f0a005d
-net.micode.notes:string/ticker_syncing = 0x7f0a0063
net.micode.notes:string/search_label = 0x7f0a0058
-net.micode.notes:string/datetime_dialog_cancel = 0x7f0a0009
-net.micode.notes:string/preferences_last_sync_time = 0x7f0a004e
-net.micode.notes:string/preferences_dialog_change_account_warn_msg = 0x7f0a004b
-net.micode.notes:string/error_note_empty_for_send_to_desktop = 0x7f0a000d
-net.micode.notes:string/alert_message_delete_notes = 0x7f0a0002
-net.micode.notes:string/preferences_toast_cannot_change_account = 0x7f0a0054
-net.micode.notes:string/note_link_tel = 0x7f0a003e
-net.micode.notes:id/widget_text = 0x7f05004c
net.micode.notes:string/preferences_toast_success_set_accout = 0x7f0a0055
-net.micode.notes:id/menu_search = 0x7f050031
-net.micode.notes:xml/widget_4x_info = 0x7f0c0003
-net.micode.notes:string/format_folder_files_count = 0x7f0a001b
-net.micode.notes:string/preferences_dialog_select_account_title = 0x7f0a004d
-net.micode.notes:string/preferences_menu_change_account = 0x7f0a0051
-net.micode.notes:style/NoteActionBarStyle = 0x7f0b0002
-net.micode.notes:id/menu_send_to_desktop = 0x7f050032
-net.micode.notes:string/widget_under_visit_mode = 0x7f0a0065
-net.micode.notes:style/TextAppearanceMedium = 0x7f0b0005
-net.micode.notes:string/menu_select_none = 0x7f0a0033
-net.micode.notes:string/menu_normal_mode = 0x7f0a002f
-net.micode.notes:string/menu_sync_cancel = 0x7f0a0039
-net.micode.notes:drawable/title_alert = 0x7f040039
-net.micode.notes:id/note_title = 0x7f05003d
-net.micode.notes:string/menu_search = 0x7f0a0031
-net.micode.notes:style/TextAppearanceNormal = 0x7f0b0006
+net.micode.notes:string/preferences_toast_cannot_change_account = 0x7f0a0054
net.micode.notes:string/preferences_title = 0x7f0a0053
-net.micode.notes:string/datetime_dialog_ok = 0x7f0a000a
-net.micode.notes:id/notes_list = 0x7f05003e
+net.micode.notes:string/preferences_menu_remove_account = 0x7f0a0052
+net.micode.notes:style/NoteActionBarStyle = 0x7f0b0003
+net.micode.notes:string/preferences_menu_change_account = 0x7f0a0051
+net.micode.notes:string/preferences_menu_cancel = 0x7f0a0050
+net.micode.notes:string/preferences_last_sync_time = 0x7f0a004e
+net.micode.notes:string/preferences_dialog_select_account_title = 0x7f0a004d
+net.micode.notes:string/preferences_dialog_change_account_warn_msg = 0x7f0a004b
net.micode.notes:string/preferences_button_sync_immediately = 0x7f0a0049
-net.micode.notes:layout/note_edit = 0x7f060008
-net.micode.notes:string/widget_havenot_content = 0x7f0a0064
net.micode.notes:string/preferences_button_sync_cancel = 0x7f0a0048
-net.micode.notes:color/text_color_state_list = 0x7f020008
-net.micode.notes:string/notelist_menu_new = 0x7f0a0042
-net.micode.notes:style/TextAppearanceSecondaryItem = 0x7f0b0008
-net.micode.notes:menu/sub_folder = 0x7f070006
-net.micode.notes:string/menu_remove_remind = 0x7f0a0030
-net.micode.notes:string/format_move_notes_to_folder = 0x7f0a001c
-net.micode.notes:string/call_record_folder_name = 0x7f0a0008
-net.micode.notes:drawable/list_green_up = 0x7f040023
-net.micode.notes:string/notelist_string_info = 0x7f0a0043
+net.micode.notes:string/preferences_account_summary = 0x7f0a0044
net.micode.notes:string/success_sdcard_export = 0x7f0a005b
-net.micode.notes:string/menu_move_parent_folder = 0x7f0a002e
-net.micode.notes:string/menu_share = 0x7f0a0037
-net.micode.notes:style/HighlightTextAppearanceSecondary = 0x7f0b0001
-net.micode.notes:string/ticker_cancel = 0x7f0a0060
+net.micode.notes:string/notelist_string_info = 0x7f0a0043
+net.micode.notes:string/notelist_menu_new = 0x7f0a0042
net.micode.notes:string/notealert_ok = 0x7f0a0041
+net.micode.notes:string/notealert_enter = 0x7f0a0040
net.micode.notes:string/note_link_web = 0x7f0a003f
+net.micode.notes:string/note_link_tel = 0x7f0a003e
+net.micode.notes:string/note_link_other = 0x7f0a003d
net.micode.notes:string/note_link_email = 0x7f0a003c
+net.micode.notes:string/note_alert_expired = 0x7f0a003b
+net.micode.notes:string/menu_sync = 0x7f0a0038
+net.micode.notes:string/menu_share = 0x7f0a0037
+net.micode.notes:string/menu_select_title = 0x7f0a0034
+net.micode.notes:style/TextAppearanceMedium = 0x7f0b0006
+net.micode.notes:string/menu_select_none = 0x7f0a0033
+net.micode.notes:string/menu_search = 0x7f0a0031
+net.micode.notes:string/menu_remove_remind = 0x7f0a0030
+net.micode.notes:string/menu_normal_mode = 0x7f0a002f
+net.micode.notes:string/menu_move_parent_folder = 0x7f0a002e
net.micode.notes:string/menu_move = 0x7f0a002d
-net.micode.notes:menu/note_edit = 0x7f070002
net.micode.notes:string/menu_list_mode = 0x7f0a002c
-net.micode.notes:id/iv_bg_blue_select = 0x7f050018
-net.micode.notes:string/error_note_empty_for_clock = 0x7f0a000c
net.micode.notes:string/menu_font_small = 0x7f0a002a
-net.micode.notes:id/tv_title_bar = 0x7f05004a
-net.micode.notes:color/text_color = 0x7f020007
-net.micode.notes:layout/layout_custom_toast = 0x7f060007
+net.micode.notes:string/menu_folder_change_name = 0x7f0a0024
+net.micode.notes:string/menu_export_text = 0x7f0a0023
+net.micode.notes:string/menu_deselect_all = 0x7f0a0022
net.micode.notes:string/menu_create_folder = 0x7f0a0020
-net.micode.notes:id/menu_share = 0x7f050034
+net.micode.notes:string/format_move_notes_to_folder = 0x7f0a001c
+net.micode.notes:string/format_folder_files_count = 0x7f0a001b
net.micode.notes:string/format_datetime_mdhm = 0x7f0a0019
net.micode.notes:string/format_date_ymd = 0x7f0a0018
+net.micode.notes:string/file_path = 0x7f0a0016
net.micode.notes:string/ticker_fail = 0x7f0a0061
net.micode.notes:string/file_name_txt_format = 0x7f0a0015
net.micode.notes:string/failed_sdcard_export = 0x7f0a0014
-net.micode.notes:string/menu_folder_change_name = 0x7f0a0024
net.micode.notes:string/set_remind_time_message = 0x7f0a005a
net.micode.notes:string/error_sync_network = 0x7f0a0013
-net.micode.notes:string/error_note_not_exist = 0x7f0a000e
-net.micode.notes:id/menu_new_folder = 0x7f05002f
net.micode.notes:string/error_sdcard_unmounted = 0x7f0a0010
-net.micode.notes:drawable/new_note_normal = 0x7f040033
-net.micode.notes:string/button_delete = 0x7f0a0007
+net.micode.notes:string/error_note_not_exist = 0x7f0a000e
+net.micode.notes:string/error_note_empty_for_send_to_desktop = 0x7f0a000d
+net.micode.notes:string/error_note_empty_for_clock = 0x7f0a000c
+net.micode.notes:string/delete_remind_time_message = 0x7f0a000b
+net.micode.notes:string/datetime_dialog_ok = 0x7f0a000a
+net.micode.notes:string/datetime_dialog_cancel = 0x7f0a0009
+net.micode.notes:string/app_widget4x4 = 0x7f0a0006
net.micode.notes:string/app_widget2x2 = 0x7f0a0005
-net.micode.notes:string/menu_select_title = 0x7f0a0034
-net.micode.notes:raw/introduction = 0x7f090000
-net.micode.notes:string/format_exported_file_location = 0x7f0a001a
+net.micode.notes:string/app_name = 0x7f0a0004
net.micode.notes:string/menu_font_normal = 0x7f0a0028
-net.micode.notes:string/notealert_enter = 0x7f0a0040
-net.micode.notes:drawable/new_note = 0x7f040032
-net.micode.notes:id/sv_note_edit = 0x7f050042
+net.micode.notes:string/format_exported_file_location = 0x7f0a001a
+net.micode.notes:raw/introduction = 0x7f090000
+net.micode.notes:dimen/text_font_size_super = 0x7f030004
+net.micode.notes:drawable/selected = 0x7f040039
+net.micode.notes:plurals/search_results_title = 0x7f080000
+net.micode.notes:menu/sub_folder = 0x7f070006
+net.micode.notes:menu/note_edit = 0x7f070002
+net.micode.notes:style/TextAppearanceSuper = 0x7f0b000a
+net.micode.notes:color/secondary_text_dark = 0x7f020005
+net.micode.notes:id/move = 0x7f050038
+net.micode.notes:id/iv_bg_yellow_select = 0x7f050021
+net.micode.notes:menu/call_note_edit = 0x7f070000
+net.micode.notes:drawable/new_note_pressed = 0x7f040035
+net.micode.notes:id/iv_bg_blue = 0x7f050018
+net.micode.notes:layout/settings_header = 0x7f06000e
+net.micode.notes:layout/note_list = 0x7f06000b
+net.micode.notes:layout/layout_custom_toast = 0x7f060007
net.micode.notes:xml/widget_2x_info = 0x7f0c0002
net.micode.notes:string/alert_message_delete_folder = 0x7f0a0000
net.micode.notes:layout/datetime_picker = 0x7f060004
-net.micode.notes:string/delete_remind_time_message = 0x7f0a000b
-net.micode.notes:plurals/search_results_title = 0x7f080000
-net.micode.notes:drawable/selected = 0x7f040038
-net.micode.notes:dimen/text_font_size_super = 0x7f030004
-net.micode.notes:style/TextAppearanceLarge = 0x7f0b0004
-net.micode.notes:drawable/new_note_pressed = 0x7f040034
-net.micode.notes:id/iv_bg_blue = 0x7f050017
-net.micode.notes:layout/settings_header = 0x7f06000e
-net.micode.notes:menu/call_note_edit = 0x7f070000
-net.micode.notes:style/TextAppearanceSuper = 0x7f0b0009
-net.micode.notes:id/iv_bg_yellow_select = 0x7f050020
-net.micode.notes:id/move = 0x7f050037
-net.micode.notes:color/secondary_text_dark = 0x7f020004
net.micode.notes:layout/activity_login = 0x7f060001
-net.micode.notes:id/btn_new_note = 0x7f050008
+net.micode.notes:id/btn_new_note = 0x7f050009
net.micode.notes:layout/note_list_footer = 0x7f06000d
-net.micode.notes:drawable/widget_2x_blue = 0x7f04003c
-net.micode.notes:id/tv_time = 0x7f050048
-net.micode.notes:id/tv_name = 0x7f050047
-net.micode.notes:id/et_foler_name = 0x7f050012
-net.micode.notes:layout/widget_4x = 0x7f060010
-net.micode.notes:drawable/edit_green = 0x7f040008
+net.micode.notes:id/widget_text = 0x7f05004f
+net.micode.notes:drawable/widget_2x_blue = 0x7f04003d
+net.micode.notes:id/tv_time = 0x7f05004b
+net.micode.notes:id/tv_name = 0x7f05004a
net.micode.notes:string/menu_font_super = 0x7f0a002b
-net.micode.notes:id/textView = 0x7f050043
+net.micode.notes:id/textView = 0x7f050046
+net.micode.notes:drawable/new_note = 0x7f040033
+net.micode.notes:id/sv_note_edit = 0x7f050045
+net.micode.notes:id/speech_to_text_btn = 0x7f050044
net.micode.notes:string/error_sdcard_export = 0x7f0a000f
-net.micode.notes:id/preference_sync_button = 0x7f050040
-net.micode.notes:id/navigation_bar = 0x7f050038
-net.micode.notes:string/app_widget4x4 = 0x7f0a0006
-net.micode.notes:id/minute = 0x7f050036
+net.micode.notes:id/preference_sync_button = 0x7f050041
+net.micode.notes:layout/note_edit = 0x7f060008
+net.micode.notes:id/notes_list = 0x7f05003f
+net.micode.notes:string/alert_message_delete_notes = 0x7f0a0002
+net.micode.notes:drawable/title_alert = 0x7f04003a
+net.micode.notes:id/note_title = 0x7f05003e
+net.micode.notes:id/navigation_bar = 0x7f050039
net.micode.notes:drawable/font_normal = 0x7f040013
+net.micode.notes:id/minute = 0x7f050037
net.micode.notes:drawable/font_super = 0x7f040016
-net.micode.notes:id/menu_sync = 0x7f050035
-net.micode.notes:id/menu_setting = 0x7f050033
-net.micode.notes:drawable/list_green_down = 0x7f040020
-net.micode.notes:id/menu_new_note = 0x7f050030
-net.micode.notes:id/menu_list_mode = 0x7f05002e
-net.micode.notes:id/iv_medium_select = 0x7f050022
-net.micode.notes:id/menu_export_text = 0x7f05002c
+net.micode.notes:id/menu_sync = 0x7f050036
+net.micode.notes:id/menu_share = 0x7f050035
+net.micode.notes:id/menu_setting = 0x7f050034
+net.micode.notes:string/widget_under_visit_mode = 0x7f0a0065
+net.micode.notes:id/menu_send_to_desktop = 0x7f050033
+net.micode.notes:id/menu_search = 0x7f050032
+net.micode.notes:drawable/list_green_down = 0x7f040021
+net.micode.notes:id/menu_new_note = 0x7f050031
+net.micode.notes:id/menu_new_folder = 0x7f050030
+net.micode.notes:id/menu_list_mode = 0x7f05002f
+net.micode.notes:id/iv_medium_select = 0x7f050023
+net.micode.notes:id/menu_export_text = 0x7f05002d
net.micode.notes:string/menu_folder_view = 0x7f0a0026
-net.micode.notes:id/menu_delete = 0x7f05002a
net.micode.notes:layout/activity_register = 0x7f060002
+net.micode.notes:id/menu_delete = 0x7f05002b
net.micode.notes:drawable/edit_blue = 0x7f040007
-net.micode.notes:id/prefenerece_sync_status_textview = 0x7f05003f
+net.micode.notes:id/prefenerece_sync_status_textview = 0x7f050040
net.micode.notes:string/menu_font_size = 0x7f0a0029
-net.micode.notes:drawable/edit_title_yellow = 0x7f04000e
net.micode.notes:string/menu_alert = 0x7f0a001f
-net.micode.notes:id/menu_alert = 0x7f050029
+net.micode.notes:drawable/edit_title_yellow = 0x7f04000e
+net.micode.notes:id/menu_alert = 0x7f05002a
+net.micode.notes:id/date = 0x7f05000c
+net.micode.notes:id/record_audio_btn = 0x7f050042
net.micode.notes:string/success_sync_account = 0x7f0a005c
-net.micode.notes:id/ll_font_super = 0x7f050028
-net.micode.notes:id/ll_font_normal = 0x7f050026
+net.micode.notes:id/ll_font_super = 0x7f050029
net.micode.notes:menu/call_record_folder = 0x7f070001
-net.micode.notes:id/ll_font_large = 0x7f050025
-net.micode.notes:id/note_bg_color_selector = 0x7f050039
-net.micode.notes:id/iv_super_select = 0x7f050024
-net.micode.notes:drawable/search_result = 0x7f040037
-net.micode.notes:id/iv_bg_yellow = 0x7f05001f
+net.micode.notes:id/ll_font_normal = 0x7f050027
+net.micode.notes:id/ll_font_large = 0x7f050026
+net.micode.notes:id/note_bg_color_selector = 0x7f05003a
+net.micode.notes:drawable/search_result = 0x7f040038
+net.micode.notes:id/iv_super_select = 0x7f050025
+net.micode.notes:id/iv_bg_yellow = 0x7f050020
net.micode.notes:string/error_sync_cancelled = 0x7f0a0011
-net.micode.notes:id/iv_bg_white_select = 0x7f05001e
-net.micode.notes:drawable/widget_4x_blue = 0x7f040041
-net.micode.notes:id/iv_large_select = 0x7f050021
+net.micode.notes:id/iv_bg_white_select = 0x7f05001f
+net.micode.notes:id/iv_bg_white = 0x7f05001e
net.micode.notes:string/menu_font_large = 0x7f0a0027
-net.micode.notes:id/iv_bg_green_select = 0x7f05001a
-net.micode.notes:id/widget_bg_image = 0x7f05004b
+net.micode.notes:drawable/widget_4x_blue = 0x7f040042
+net.micode.notes:id/iv_large_select = 0x7f050022
+net.micode.notes:id/widget_bg_image = 0x7f05004e
+net.micode.notes:id/iv_bg_green_select = 0x7f05001b
net.micode.notes:id/amPm = 0x7f050004
-net.micode.notes:id/iv_bg_green = 0x7f050019
-net.micode.notes:drawable/widget_4x_green = 0x7f040042
+net.micode.notes:id/iv_bg_green = 0x7f05001a
+net.micode.notes:id/iv_small_select = 0x7f050024
net.micode.notes:menu/note_list_options = 0x7f070005
-net.micode.notes:id/iv_small_select = 0x7f050023
-net.micode.notes:id/hour = 0x7f050014
-net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f040035
-net.micode.notes:style/NoteTheme = 0x7f0b0003
-net.micode.notes:drawable/widget_2x_yellow = 0x7f040040
-net.micode.notes:id/font_size_selector = 0x7f050013
+net.micode.notes:style/NoteTheme = 0x7f0b0004
+net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f040036
+net.micode.notes:id/hour = 0x7f050015
net.micode.notes:string/preferences_dialog_select_account_tips = 0x7f0a004c
-net.micode.notes:id/et_edit_text = 0x7f050011
+net.micode.notes:id/font_size_selector = 0x7f050014
+net.micode.notes:id/et_edit_text = 0x7f050012
+net.micode.notes:drawable/list_white_single = 0x7f04002b
net.micode.notes:layout/note_item = 0x7f06000a
-net.micode.notes:drawable/list_white_single = 0x7f04002a
-net.micode.notes:id/etUsername = 0x7f050010
+net.micode.notes:style/TextAppearancePrimaryItem = 0x7f0b0008
net.micode.notes:string/hint_foler_name = 0x7f0a001d
net.micode.notes:string/folder_exist = 0x7f0a0017
-net.micode.notes:style/TextAppearancePrimaryItem = 0x7f0b0007
-net.micode.notes:id/ll_font_small = 0x7f050027
-net.micode.notes:id/etPassword = 0x7f05000f
-net.micode.notes:id/etLoginUsername = 0x7f05000e
+net.micode.notes:id/etUsername = 0x7f050011
+net.micode.notes:id/ll_font_small = 0x7f050028
+net.micode.notes:id/etPassword = 0x7f050010
+net.micode.notes:id/etLoginUsername = 0x7f05000f
+net.micode.notes:id/etLoginPassword = 0x7f05000e
+net.micode.notes:style/TextAppearanceUnderMenuIcon = 0x7f0b000b
+net.micode.notes:id/delete = 0x7f05000d
+net.micode.notes:id/et_foler_name = 0x7f050013
+net.micode.notes:drawable/edit_green = 0x7f040008
+net.micode.notes:layout/widget_4x = 0x7f060010
net.micode.notes:string/search = 0x7f0a0056
-net.micode.notes:id/cb_edit_item = 0x7f05000a
-net.micode.notes:id/btn_set_bg_color = 0x7f050009
+net.micode.notes:id/cb_edit_item = 0x7f05000b
+net.micode.notes:id/btn_set_bg_color = 0x7f05000a
net.micode.notes:color/button_text_color = 0x7f020002
-net.micode.notes:id/imageView = 0x7f050015
+net.micode.notes:id/imageView = 0x7f050016
net.micode.notes:id/btnRegister = 0x7f050007
net.micode.notes:string/preferences_dialog_change_account_title = 0x7f0a004a
-net.micode.notes:drawable/menu_move = 0x7f040031
+net.micode.notes:drawable/menu_move = 0x7f040032
+net.micode.notes:drawable/widget_4x_white = 0x7f040045
net.micode.notes:id/btnLogin = 0x7f050006
-net.micode.notes:drawable/widget_4x_white = 0x7f040044
net.micode.notes:id/account_dialog_subtitle = 0x7f050000
+net.micode.notes:id/iv_bg_blue_select = 0x7f050019
net.micode.notes:menu/note_list = 0x7f070003
net.micode.notes:id/account_dialog_title = 0x7f050001
+net.micode.notes:drawable/widget_4x_green = 0x7f040043
+net.micode.notes:drawable/widget_2x_yellow = 0x7f040041
net.micode.notes:dimen/text_font_size_large = 0x7f030000
-net.micode.notes:id/tv_alert_date = 0x7f050044
-net.micode.notes:drawable/widget_2x_red = 0x7f04003e
-net.micode.notes:style/TextAppearanceUnderMenuIcon = 0x7f0b000a
-net.micode.notes:id/delete = 0x7f05000c
-net.micode.notes:drawable/widget_2x_green = 0x7f04003d
-net.micode.notes:drawable/title_bar_bg = 0x7f04003a
-net.micode.notes:id/iv_bg_red = 0x7f05001b
-net.micode.notes:drawable/notification = 0x7f040036
-net.micode.notes:drawable/list_green_single = 0x7f040022
+net.micode.notes:id/tv_alert_date = 0x7f050047
+net.micode.notes:drawable/widget_2x_red = 0x7f04003f
+net.micode.notes:drawable/widget_2x_green = 0x7f04003e
+net.micode.notes:drawable/title_bar_bg = 0x7f04003b
+net.micode.notes:id/iv_bg_red = 0x7f05001c
+net.micode.notes:drawable/notification = 0x7f040037
+net.micode.notes:drawable/list_green_single = 0x7f040023
net.micode.notes:string/alert_message_delete_note = 0x7f0a0001
-net.micode.notes:id/tv_modified_date = 0x7f050046
-net.micode.notes:drawable/ic_warning = 0x7f040017
-net.micode.notes:drawable/list_blue_middle = 0x7f04001b
-net.micode.notes:id/menu_delete_remind = 0x7f05002b
-net.micode.notes:drawable/list_red_down = 0x7f040024
-net.micode.notes:drawable/list_red_middle = 0x7f040025
+net.micode.notes:id/tv_modified_date = 0x7f050049
+net.micode.notes:drawable/ic_warning = 0x7f040018
+net.micode.notes:drawable/list_blue_middle = 0x7f04001c
+net.micode.notes:id/menu_delete_remind = 0x7f05002c
+net.micode.notes:drawable/list_red_down = 0x7f040025
+net.micode.notes:drawable/list_red_middle = 0x7f040026
net.micode.notes:string/menu_title_select_folder = 0x7f0a003a
net.micode.notes:string/menu_select_all = 0x7f0a0032
-net.micode.notes:drawable/toast_background = 0x7f04003b
+net.micode.notes:drawable/toast_background = 0x7f04003c
net.micode.notes:xml/searchable = 0x7f0c0001
net.micode.notes:string/menu_folder_delete = 0x7f0a0025
net.micode.notes:drawable/dropdown_icon = 0x7f040006
-net.micode.notes:id/date = 0x7f05000b
-net.micode.notes:drawable/list_yellow_single = 0x7f04002e
-net.micode.notes:id/tv_folder_name = 0x7f050045
-net.micode.notes:drawable/list_yellow_down = 0x7f04002c
+net.micode.notes:string/button_delete = 0x7f0a0007
+net.micode.notes:drawable/new_note_normal = 0x7f040034
+net.micode.notes:drawable/button_background = 0x7f040002
+net.micode.notes:id/btn_logout = 0x7f050008
+net.micode.notes:drawable/list_yellow_single = 0x7f04002f
+net.micode.notes:id/tv_folder_name = 0x7f050048
+net.micode.notes:drawable/list_yellow_down = 0x7f04002d
net.micode.notes:drawable/clock = 0x7f040004
-net.micode.notes:drawable/list_white_up = 0x7f04002b
+net.micode.notes:drawable/list_white_up = 0x7f04002c
net.micode.notes:layout/dialog_edit_text = 0x7f060005
net.micode.notes:string/preferences_account_title = 0x7f0a0045
net.micode.notes:drawable/edit_white = 0x7f04000f
-net.micode.notes:drawable/list_white_middle = 0x7f040029
-net.micode.notes:color/user_query_highlight = 0x7f020005
-net.micode.notes:drawable/list_white_down = 0x7f040028
-net.micode.notes:drawable/widget_4x_yellow = 0x7f040045
-net.micode.notes:drawable/list_red_up = 0x7f040027
+net.micode.notes:drawable/list_white_middle = 0x7f04002a
+net.micode.notes:color/user_query_highlight = 0x7f020008
+net.micode.notes:color/text_color_state_list = 0x7f020007
+net.micode.notes:drawable/list_white_down = 0x7f040029
+net.micode.notes:drawable/widget_4x_yellow = 0x7f040046
+net.micode.notes:drawable/list_red_up = 0x7f040028
net.micode.notes:layout/note_list_dropdown_menu = 0x7f06000c
-net.micode.notes:drawable/list_blue_down = 0x7f04001a
-net.micode.notes:color/background_color = 0x7f020000
+net.micode.notes:drawable/list_blue_down = 0x7f04001b
net.micode.notes:id/action_select_all = 0x7f050002
+net.micode.notes:drawable/list_green_middle = 0x7f040022
+net.micode.notes:string/menu_delete = 0x7f0a0021
+net.micode.notes:drawable/list_folder = 0x7f04001f
+net.micode.notes:color/background_color = 0x7f020000
net.micode.notes:string/menu_send_to_desktop = 0x7f0a0035
-net.micode.notes:drawable/list_red_single = 0x7f040026
-net.micode.notes:string/preferences_add_account = 0x7f0a0046
-net.micode.notes:drawable/bg_btn_set_color = 0x7f040000
-net.micode.notes:style/CustomEditTextStyle = 0x7f0b000b
+net.micode.notes:drawable/list_red_single = 0x7f040027
+net.micode.notes:style/CustomEditTextStyle = 0x7f0b0000
net.micode.notes:string/preferences_bg_random_appear_title = 0x7f0a0047
net.micode.notes:layout/widget_2x = 0x7f06000f
-net.micode.notes:drawable/list_footer_bg = 0x7f04001f
+net.micode.notes:drawable/list_footer_bg = 0x7f040020
+net.micode.notes:string/preferences_add_account = 0x7f0a0046
+net.micode.notes:drawable/bg_btn_set_color = 0x7f040000
net.micode.notes:string/alert_title_delete = 0x7f0a0003
net.micode.notes:drawable/edit_title_green = 0x7f04000b
-net.micode.notes:drawable/icon_app = 0x7f040018
+net.micode.notes:drawable/icon_app = 0x7f040019
net.micode.notes:drawable/font_small = 0x7f040015
net.micode.notes:string/sync_progress_login = 0x7f0a005e
net.micode.notes:array/menu_share_ways = 0x7f010001
-net.micode.notes:drawable/widget_2x_white = 0x7f04003f
+net.micode.notes:color/hint_color = 0x7f020003
+net.micode.notes:drawable/widget_2x_white = 0x7f040040
net.micode.notes:layout/folder_list_item = 0x7f060006
net.micode.notes:layout/add_account_text = 0x7f060003
-net.micode.notes:id/tv_title = 0x7f050049
-net.micode.notes:color/primary_text_dark = 0x7f020003
+net.micode.notes:id/tv_title = 0x7f05004c
+net.micode.notes:string/menu_sync_cancel = 0x7f0a0039
+net.micode.notes:drawable/ic_audio = 0x7f040017
+net.micode.notes:color/primary_text_dark = 0x7f020004
net.micode.notes:drawable/font_size_selector_bg = 0x7f040014
-net.micode.notes:drawable/list_blue_up = 0x7f04001d
-net.micode.notes:drawable/widget_4x_red = 0x7f040043
+net.micode.notes:drawable/list_blue_up = 0x7f04001e
+net.micode.notes:drawable/widget_4x_red = 0x7f040044
+net.micode.notes:string/call_record_folder_name = 0x7f0a0008
+net.micode.notes:drawable/list_green_up = 0x7f040024
net.micode.notes:id/btnBackToLogin = 0x7f050005
net.micode.notes:string/search_setting_description = 0x7f0a0059
-net.micode.notes:drawable/list_blue_single = 0x7f04001c
+net.micode.notes:drawable/list_blue_single = 0x7f04001d
net.micode.notes:drawable/font_large = 0x7f040012
net.micode.notes:string/preferences_last_sync_time_format = 0x7f0a004f
-net.micode.notes:id/note_edit_view = 0x7f05003b
+net.micode.notes:id/note_edit_view = 0x7f05003c
net.micode.notes:drawable/edittext_background = 0x7f040011
-net.micode.notes:id/selection_menu = 0x7f050041
+net.micode.notes:id/selection_menu = 0x7f050043
net.micode.notes:string/info_note_enter_desktop = 0x7f0a001e
net.micode.notes:id/add_img_btn = 0x7f050003
net.micode.notes:drawable/delete = 0x7f040005
net.micode.notes:drawable/edit_yellow = 0x7f040010
-net.micode.notes:id/note_item = 0x7f05003c
+net.micode.notes:id/note_item = 0x7f05003d
net.micode.notes:drawable/edit_title_white = 0x7f04000d
-net.micode.notes:id/note_edit_list = 0x7f05003a
-net.micode.notes:id/iv_alert_icon = 0x7f050016
+net.micode.notes:id/note_edit_list = 0x7f05003b
+net.micode.notes:id/iv_alert_icon = 0x7f050017
net.micode.notes:drawable/edit_red = 0x7f040009
net.micode.notes:drawable/edit_title_red = 0x7f04000c
-net.micode.notes:drawable/call_record = 0x7f040003
net.micode.notes:drawable/edit_title_blue = 0x7f04000a
-net.micode.notes:id/etLoginPassword = 0x7f05000d
-net.micode.notes:drawable/list_yellow_up = 0x7f04002f
-net.micode.notes:id/iv_bg_red_select = 0x7f05001c
-net.micode.notes:string/menu_delete = 0x7f0a0021
-net.micode.notes:drawable/list_folder = 0x7f04001e
+net.micode.notes:drawable/list_yellow_up = 0x7f040030
+net.micode.notes:drawable/call_record = 0x7f040003
+net.micode.notes:id/iv_bg_red_select = 0x7f05001d
net.micode.notes:string/error_sync_internal = 0x7f0a0012
-net.micode.notes:drawable/menu_delete = 0x7f040030
+net.micode.notes:drawable/menu_delete = 0x7f040031
net.micode.notes:string/search_hint = 0x7f0a0057
-net.micode.notes:id/menu_font_size = 0x7f05002d
+net.micode.notes:id/menu_font_size = 0x7f05002e
net.micode.notes:drawable/bg_color_btn_mask = 0x7f040001
net.micode.notes:dimen/text_font_size_small = 0x7f030003
net.micode.notes:dimen/text_font_size_normal = 0x7f030002
-net.micode.notes:drawable/list_background = 0x7f040019
-net.micode.notes:string/app_name = 0x7f0a0004
+net.micode.notes:drawable/list_background = 0x7f04001a
net.micode.notes:menu/note_list_dropdown = 0x7f070004
net.micode.notes:string/menu_setting = 0x7f0a0036
net.micode.notes:dimen/text_font_size_medium = 0x7f030001
-net.micode.notes:drawable/button_background = 0x7f040002
-net.micode.notes:drawable/list_green_middle = 0x7f040021
+net.micode.notes:id/tv_title_bar = 0x7f05004d
+net.micode.notes:color/text_color = 0x7f020006
net.micode.notes:layout/note_edit_list_item = 0x7f060009
net.micode.notes:layout/account_dialog_title = 0x7f060000
net.micode.notes:array/format_for_exported_note = 0x7f010000
-net.micode.notes:drawable/list_yellow_middle = 0x7f04002d
+net.micode.notes:drawable/list_yellow_middle = 0x7f04002e
net.micode.notes:color/button_color = 0x7f020001
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libjnidispatch.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libjnidispatch.so
new file mode 100644
index 0000000..61553b2
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libvosk.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libvosk.so
new file mode 100644
index 0000000..0746b58
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/arm64-v8a/libvosk.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libjnidispatch.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libjnidispatch.so
new file mode 100644
index 0000000..0683481
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libvosk.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libvosk.so
new file mode 100644
index 0000000..d2daebf
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/armeabi-v7a/libvosk.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libjnidispatch.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libjnidispatch.so
new file mode 100644
index 0000000..8587fdf
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libvosk.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libvosk.so
new file mode 100644
index 0000000..6ffc041
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86/libvosk.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libjnidispatch.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libjnidispatch.so
new file mode 100644
index 0000000..e3475dc
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libjnidispatch.so differ
diff --git a/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libvosk.so b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libvosk.so
new file mode 100644
index 0000000..3ecff4c
Binary files /dev/null and b/Src/app/build/intermediates/stripped_native_libs/debug/out/lib/x86_64/libvosk.so differ
diff --git a/Src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/Src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
new file mode 100644
index 0000000..4d81ad4
--- /dev/null
+++ b/Src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
@@ -0,0 +1,312 @@
+net.micode.notes
+array format_for_exported_note
+array menu_share_ways
+color background_color
+color button_color
+color button_text_color
+color hint_color
+color primary_text_dark
+color secondary_text_dark
+color text_color
+color text_color_state_list
+color user_query_highlight
+dimen text_font_size_large
+dimen text_font_size_medium
+dimen text_font_size_normal
+dimen text_font_size_small
+dimen text_font_size_super
+drawable bg_btn_set_color
+drawable bg_color_btn_mask
+drawable button_background
+drawable call_record
+drawable clock
+drawable delete
+drawable dropdown_icon
+drawable edit_blue
+drawable edit_green
+drawable edit_red
+drawable edit_title_blue
+drawable edit_title_green
+drawable edit_title_red
+drawable edit_title_white
+drawable edit_title_yellow
+drawable edit_white
+drawable edit_yellow
+drawable edittext_background
+drawable font_large
+drawable font_normal
+drawable font_size_selector_bg
+drawable font_small
+drawable font_super
+drawable ic_audio
+drawable ic_warning
+drawable icon_app
+drawable list_background
+drawable list_blue_down
+drawable list_blue_middle
+drawable list_blue_single
+drawable list_blue_up
+drawable list_folder
+drawable list_footer_bg
+drawable list_green_down
+drawable list_green_middle
+drawable list_green_single
+drawable list_green_up
+drawable list_red_down
+drawable list_red_middle
+drawable list_red_single
+drawable list_red_up
+drawable list_white_down
+drawable list_white_middle
+drawable list_white_single
+drawable list_white_up
+drawable list_yellow_down
+drawable list_yellow_middle
+drawable list_yellow_single
+drawable list_yellow_up
+drawable menu_delete
+drawable menu_move
+drawable new_note
+drawable new_note_normal
+drawable new_note_pressed
+drawable note_edit_color_selector_panel
+drawable notification
+drawable search_result
+drawable selected
+drawable title_alert
+drawable title_bar_bg
+drawable toast_background
+drawable widget_2x_blue
+drawable widget_2x_green
+drawable widget_2x_red
+drawable widget_2x_white
+drawable widget_2x_yellow
+drawable widget_4x_blue
+drawable widget_4x_green
+drawable widget_4x_red
+drawable widget_4x_white
+drawable widget_4x_yellow
+id account_dialog_subtitle
+id account_dialog_title
+id action_select_all
+id add_img_btn
+id amPm
+id btnBackToLogin
+id btnLogin
+id btnRegister
+id btn_logout
+id btn_new_note
+id btn_set_bg_color
+id cb_edit_item
+id date
+id delete
+id etLoginPassword
+id etLoginUsername
+id etPassword
+id etUsername
+id et_edit_text
+id et_foler_name
+id font_size_selector
+id hour
+id imageView
+id iv_alert_icon
+id iv_bg_blue
+id iv_bg_blue_select
+id iv_bg_green
+id iv_bg_green_select
+id iv_bg_red
+id iv_bg_red_select
+id iv_bg_white
+id iv_bg_white_select
+id iv_bg_yellow
+id iv_bg_yellow_select
+id iv_large_select
+id iv_medium_select
+id iv_small_select
+id iv_super_select
+id ll_font_large
+id ll_font_normal
+id ll_font_small
+id ll_font_super
+id menu_alert
+id menu_delete
+id menu_delete_remind
+id menu_export_text
+id menu_font_size
+id menu_list_mode
+id menu_new_folder
+id menu_new_note
+id menu_search
+id menu_send_to_desktop
+id menu_setting
+id menu_share
+id menu_sync
+id minute
+id move
+id navigation_bar
+id note_bg_color_selector
+id note_edit_list
+id note_edit_view
+id note_item
+id note_title
+id notes_list
+id prefenerece_sync_status_textview
+id preference_sync_button
+id record_audio_btn
+id selection_menu
+id speech_to_text_btn
+id sv_note_edit
+id textView
+id tv_alert_date
+id tv_folder_name
+id tv_modified_date
+id tv_name
+id tv_time
+id tv_title
+id tv_title_bar
+id widget_bg_image
+id widget_text
+layout account_dialog_title
+layout activity_login
+layout activity_register
+layout add_account_text
+layout datetime_picker
+layout dialog_edit_text
+layout folder_list_item
+layout layout_custom_toast
+layout note_edit
+layout note_edit_list_item
+layout note_item
+layout note_list
+layout note_list_dropdown_menu
+layout note_list_footer
+layout settings_header
+layout widget_2x
+layout widget_4x
+menu call_note_edit
+menu call_record_folder
+menu note_edit
+menu note_list
+menu note_list_dropdown
+menu note_list_options
+menu sub_folder
+plurals search_results_title
+raw introduction
+string alert_message_delete_folder
+string alert_message_delete_note
+string alert_message_delete_notes
+string alert_title_delete
+string app_name
+string app_widget2x2
+string app_widget4x4
+string button_delete
+string call_record_folder_name
+string datetime_dialog_cancel
+string datetime_dialog_ok
+string delete_remind_time_message
+string error_note_empty_for_clock
+string error_note_empty_for_send_to_desktop
+string error_note_not_exist
+string error_sdcard_export
+string error_sdcard_unmounted
+string error_sync_cancelled
+string error_sync_internal
+string error_sync_network
+string failed_sdcard_export
+string file_name_txt_format
+string file_path
+string folder_exist
+string format_date_ymd
+string format_datetime_mdhm
+string format_exported_file_location
+string format_folder_files_count
+string format_move_notes_to_folder
+string hint_foler_name
+string info_note_enter_desktop
+string menu_alert
+string menu_create_folder
+string menu_delete
+string menu_deselect_all
+string menu_export_text
+string menu_folder_change_name
+string menu_folder_delete
+string menu_folder_view
+string menu_font_large
+string menu_font_normal
+string menu_font_size
+string menu_font_small
+string menu_font_super
+string menu_list_mode
+string menu_move
+string menu_move_parent_folder
+string menu_normal_mode
+string menu_remove_remind
+string menu_search
+string menu_select_all
+string menu_select_none
+string menu_select_title
+string menu_send_to_desktop
+string menu_setting
+string menu_share
+string menu_sync
+string menu_sync_cancel
+string menu_title_select_folder
+string note_alert_expired
+string note_link_email
+string note_link_other
+string note_link_tel
+string note_link_web
+string notealert_enter
+string notealert_ok
+string notelist_menu_new
+string notelist_string_info
+string preferences_account_summary
+string preferences_account_title
+string preferences_add_account
+string preferences_bg_random_appear_title
+string preferences_button_sync_cancel
+string preferences_button_sync_immediately
+string preferences_dialog_change_account_title
+string preferences_dialog_change_account_warn_msg
+string preferences_dialog_select_account_tips
+string preferences_dialog_select_account_title
+string preferences_last_sync_time
+string preferences_last_sync_time_format
+string preferences_menu_cancel
+string preferences_menu_change_account
+string preferences_menu_remove_account
+string preferences_title
+string preferences_toast_cannot_change_account
+string preferences_toast_success_set_accout
+string search
+string search_hint
+string search_label
+string search_setting_description
+string set_remind_time_message
+string success_sdcard_export
+string success_sync_account
+string sync_progress_init_list
+string sync_progress_login
+string sync_progress_syncing
+string ticker_cancel
+string ticker_fail
+string ticker_success
+string ticker_syncing
+string widget_havenot_content
+string widget_under_visit_mode
+style CustomEditTextStyle
+style HighlightTextAppearancePrimary
+style HighlightTextAppearanceSecondary
+style NoteActionBarStyle
+style NoteTheme
+style TextAppearanceLarge
+style TextAppearanceMedium
+style TextAppearanceNormal
+style TextAppearancePrimaryItem
+style TextAppearanceSecondaryItem
+style TextAppearanceSuper
+style TextAppearanceUnderMenuIcon
+xml preferences
+xml searchable
+xml widget_2x_info
+xml widget_4x_info
diff --git a/Src/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk b/Src/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk
new file mode 100644
index 0000000..33e9842
Binary files /dev/null and b/Src/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk differ
diff --git a/Src/app/build/outputs/apk/androidTest/debug/output-metadata.json b/Src/app/build/outputs/apk/androidTest/debug/output-metadata.json
new file mode 100644
index 0000000..b9c23aa
--- /dev/null
+++ b/Src/app/build/outputs/apk/androidTest/debug/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "APK",
+ "kind": "Directory"
+ },
+ "applicationId": "net.micode.notes.test",
+ "variantName": "debugAndroidTest",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 0,
+ "versionName": "",
+ "outputFile": "app-debug-androidTest.apk"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/Src/app/build/outputs/apk/debug/app-debug.apk b/Src/app/build/outputs/apk/debug/app-debug.apk
index 31b8f36..5a5d983 100644
Binary files a/Src/app/build/outputs/apk/debug/app-debug.apk and b/Src/app/build/outputs/apk/debug/app-debug.apk differ
diff --git a/Src/app/build/outputs/logs/manifest-merger-debug-report.txt b/Src/app/build/outputs/logs/manifest-merger-debug-report.txt
index 13d8867..d895634 100644
--- a/Src/app/build/outputs/logs/manifest-merger-debug-report.txt
+++ b/Src/app/build/outputs/logs/manifest-merger-debug-report.txt
@@ -1,12 +1,13 @@
-- Merging decision tree log ---
manifest
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
-INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
-INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
-INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
-INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
-INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
-INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
+INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
+INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
+INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
+MERGED from [com.alphacephei:vosk-android:0.3.38] D:\Notes\caches\transforms-3\56c56b617d8c6655fd5dde2ec0086806\transformed\vosk-android-0.3.38\AndroidManifest.xml:2:1-9:12
+INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
+INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
+INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-138:12
package
ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:4:5-31
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
@@ -23,200 +24,210 @@ INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:2:1-136:12
ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:5:5-28
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
-uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:5-81
+uses-permission#android.permission.RECORD_AUDIO
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:5-71
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:22-78
-uses-permission#android.permission.READ_EXTERNAL_STORAGE
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:9:22-68
+uses-permission#android.permission.MODIFY_AUDIO_SETTINGS
ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:10:5-80
android:name
ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:10:22-77
+uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:5-81
+ android:name
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:22-78
+uses-permission#android.permission.READ_EXTERNAL_STORAGE
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:5-80
+ android:name
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:22-77
uses-permission#android.permission.INTERNET
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:5-67
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:5-67
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:11:22-64
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:22-64
uses-permission#android.permission.READ_CONTACTS
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:5-72
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:14:5-72
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:12:22-69
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:14:22-69
uses-permission#android.permission.RECEIVE_BOOT_COMPLETED
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:5-81
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:15:5-81
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:13:22-78
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:15:22-78
application
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:15:5-135:19
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:17:5-137:19
android:label
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:17:9-41
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:19:9-41
android:icon
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:16:9-42
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:18:9-42
activity#net.micode.notes.login.LoginActivity
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:20:9-27:20
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:22:9-29:20
android:launchMode
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:22:13-43
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:24:13-43
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:21:13-48
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:23:13-48
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:23:13-26:29
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:25:13-28:29
action#android.intent.action.MAIN
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:24:17-69
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:26:17-69
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:24:25-66
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:26:25-66
category#android.intent.category.LAUNCHER
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:25:17-77
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:27:17-77
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:25:27-74
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:27:27-74
activity#net.micode.notes.login.RegisterActivity
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:30:9-60
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:32:9-60
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:30:19-57
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:32:19-57
activity#net.micode.notes.ui.NotesListActivity
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:32:9-38:55
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:34:9-40:55
android:label
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:35:13-45
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:37:13-45
android:launchMode
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:36:13-43
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:38:13-43
android:windowSoftInputMode
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:38:13-52
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:40:13-52
android:configChanges
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:34:13-74
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:36:13-74
android:theme
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:37:13-45
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:39:13-45
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:33:13-49
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:35:13-49
activity#net.micode.notes.ui.NoteEditActivity
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:41:9-67:20
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:43:9-69:20
android:launchMode
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:44:13-43
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:46:13-43
android:configChanges
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:43:13-74
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:45:13-74
android:theme
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:45:13-45
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:47:13-45
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:42:13-48
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:44:13-48
intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.DEFAULT+data:mimeType:vnd.android.cursor.item/call_note+data:mimeType:vnd.android.cursor.item/text_note
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:46:13-53:29
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:48:13-55:29
android:scheme
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:47:17-38
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:49:17-38
tools:ignore
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:48:17-47
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:17-47
action#android.intent.action.VIEW
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:49:17-69
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-69
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:49:25-66
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:25-66
category#android.intent.category.DEFAULT
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:17-76
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:17-76
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:50:27-73
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:52:27-73
data
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:17-78
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:17-78
android:mimeType
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:51:23-75
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:53:23-75
intent-filter#action:name:android.intent.action.INSERT_OR_EDIT+category:name:android.intent.category.DEFAULT+data:mimeType:vnd.android.cursor.item/call_note+data:mimeType:vnd.android.cursor.item/text_note
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:54:13-59:29
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:56:13-61:29
action#android.intent.action.INSERT_OR_EDIT
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:55:17-79
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:57:17-79
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:55:25-76
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:57:25-76
intent-filter#action:name:android.intent.action.SEARCH+category:name:android.intent.category.DEFAULT
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:60:13-63:29
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:62:13-65:29
action#android.intent.action.SEARCH
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:61:17-71
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:63:17-71
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:61:25-68
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:63:25-68
meta-data#android.app.searchable
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:64:13-66:54
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:66:13-68:54
android:resource
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:66:17-51
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:68:17-51
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:65:17-54
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:67:17-54
provider#net.micode.notes.data.NotesProvider
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:70:9-73:43
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:72:9-75:43
android:authorities
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:72:13-47
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:74:13-47
android:multiprocess
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:73:13-40
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:75:13-40
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:71:13-63
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:73:13-63
receiver#net.micode.notes.widget.NoteWidgetProvider_2x
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:76:9-86:20
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:78:9-88:20
android:label
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:78:13-50
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:13-50
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:77:13-57
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:79:13-57
intent-filter#action:name:android.appwidget.action.APPWIDGET_DELETED+action:name:android.appwidget.action.APPWIDGET_UPDATE
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:79:13-82:29
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:13-84:29
action#android.appwidget.action.APPWIDGET_UPDATE
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:17-84
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:82:17-84
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:80:25-81
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:82:25-81
action#android.appwidget.action.APPWIDGET_DELETED
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:17-85
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:17-85
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:81:25-82
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:25-82
meta-data#android.appwidget.provider
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:83:13-85:58
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:85:13-87:58
android:resource
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:85:17-55
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:87:17-55
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:84:17-58
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:86:17-58
receiver#net.micode.notes.widget.NoteWidgetProvider_4x
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:88:9-98:20
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:90:9-100:20
android:label
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:90:13-50
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:92:13-50
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:89:13-57
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:91:13-57
receiver#net.micode.notes.ui.AlarmInitReceiver
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:101:9-105:20
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:9-107:20
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:101:19-55
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:19-55
intent-filter#action:name:android.intent.action.BOOT_COMPLETED
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:102:13-104:29
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:104:13-106:29
action#android.intent.action.BOOT_COMPLETED
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:17-79
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:105:17-79
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:103:25-76
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:105:25-76
receiver#net.micode.notes.ui.AlarmReceiver
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:108:9-110:41
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:110:9-112:41
android:process
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:110:13-38
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:112:13-38
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:109:13-61
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:111:13-61
activity#net.micode.notes.ui.AlarmAlertActivity
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:113:9-117:87
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:115:9-119:87
android:label
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:115:13-45
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:117:13-45
android:launchMode
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:116:13-48
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:118:13-48
android:theme
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:117:13-75
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:119:13-75
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:114:13-50
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:116:13-50
activity#net.micode.notes.ui.NotesPreferenceActivity
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:120:9-124:72
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:122:9-126:72
android:label
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:122:13-54
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:124:13-54
android:launchMode
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:123:13-43
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:125:13-43
android:theme
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:124:13-60
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:126:13-60
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:121:13-71
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:123:13-71
service#net.micode.notes.gtask.remote.GTaskSyncService
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:127:9-129:40
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:129:9-131:40
android:exported
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:129:13-37
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:131:13-37
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:128:13-74
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:130:13-74
meta-data#android.app.default_searchable
-ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:132:9-134:52
+ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:134:9-136:52
android:value
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:134:13-49
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:136:13-49
android:name
- ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:133:13-58
+ ADDED from D:\gitnote\notes\app\src\main\AndroidManifest.xml:135:13-58
uses-sdk
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml reason: use-sdk injection requested
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
+MERGED from [com.alphacephei:vosk-android:0.3.38] D:\Notes\caches\transforms-3\56c56b617d8c6655fd5dde2ec0086806\transformed\vosk-android-0.3.38\AndroidManifest.xml:5:5-7:41
+MERGED from [com.alphacephei:vosk-android:0.3.38] D:\Notes\caches\transforms-3\56c56b617d8c6655fd5dde2ec0086806\transformed\vosk-android-0.3.38\AndroidManifest.xml:5:5-7:41
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
INJECTED from D:\gitnote\notes\app\src\main\AndroidManifest.xml
android:targetSdkVersion
diff --git a/Src/app/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin b/Src/app/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin
new file mode 100644
index 0000000..00ea7f9
Binary files /dev/null and b/Src/app/build/tmp/compileDebugAndroidTestJavaWithJavac/previous-compilation-data.bin differ
diff --git a/Src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/Src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
index 833752e..17460a9 100644
Binary files a/Src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and b/Src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/README b/Src/app/src/main/assets/vosk-model-small-cn-0.22/README
new file mode 100644
index 0000000..0b5d9e5
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/README
@@ -0,0 +1,6 @@
+Chinese Vosk model for mobile
+
+CER results
+
+23.54% speechio_02
+38.29% speechio_06
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/am/final.mdl b/Src/app/src/main/assets/vosk-model-small-cn-0.22/am/final.mdl
new file mode 100644
index 0000000..f7cf1de
Binary files /dev/null and b/Src/app/src/main/assets/vosk-model-small-cn-0.22/am/final.mdl differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/conf/mfcc.conf b/Src/app/src/main/assets/vosk-model-small-cn-0.22/conf/mfcc.conf
new file mode 100644
index 0000000..12fdad4
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/conf/mfcc.conf
@@ -0,0 +1,8 @@
+--use-energy=false
+--sample-frequency=16000
+--num-mel-bins=40
+--num-ceps=40
+--low-freq=40
+--high-freq=-200
+--allow-upsample=true
+--allow-downsample=true
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/conf/model.conf b/Src/app/src/main/assets/vosk-model-small-cn-0.22/conf/model.conf
new file mode 100644
index 0000000..9ae12a7
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/conf/model.conf
@@ -0,0 +1,10 @@
+--min-active=200
+--max-active=5000
+--beam=12.0
+--lattice-beam=4.0
+--acoustic-scale=1.0
+--frame-subsampling-factor=3
+--endpoint.silence-phones=1:2:3:4:5:6:7:8:9:10
+--endpoint.rule2.min-trailing-silence=0.5
+--endpoint.rule3.min-trailing-silence=1.0
+--endpoint.rule4.min-trailing-silence=2.0
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/Gr.fst b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/Gr.fst
new file mode 100644
index 0000000..ee4580d
Binary files /dev/null and b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/Gr.fst differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/HCLr.fst b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/HCLr.fst
new file mode 100644
index 0000000..2ad6e8f
Binary files /dev/null and b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/HCLr.fst differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/disambig_tid.int b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/disambig_tid.int
new file mode 100644
index 0000000..c1a114f
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/disambig_tid.int
@@ -0,0 +1,39 @@
+11845
+11846
+11847
+11848
+11849
+11850
+11851
+11852
+11853
+11854
+11855
+11856
+11857
+11858
+11859
+11860
+11861
+11862
+11863
+11864
+11865
+11866
+11867
+11868
+11869
+11870
+11871
+11872
+11873
+11874
+11875
+11876
+11877
+11878
+11879
+11880
+11881
+11882
+11883
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/phones/word_boundary.int b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/phones/word_boundary.int
new file mode 100644
index 0000000..9f3713e
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/graph/phones/word_boundary.int
@@ -0,0 +1,646 @@
+1 nonword
+2 begin
+3 end
+4 internal
+5 singleton
+6 nonword
+7 begin
+8 end
+9 internal
+10 singleton
+11 begin
+12 end
+13 internal
+14 singleton
+15 begin
+16 end
+17 internal
+18 singleton
+19 begin
+20 end
+21 internal
+22 singleton
+23 begin
+24 end
+25 internal
+26 singleton
+27 begin
+28 end
+29 internal
+30 singleton
+31 begin
+32 end
+33 internal
+34 singleton
+35 begin
+36 end
+37 internal
+38 singleton
+39 begin
+40 end
+41 internal
+42 singleton
+43 begin
+44 end
+45 internal
+46 singleton
+47 begin
+48 end
+49 internal
+50 singleton
+51 begin
+52 end
+53 internal
+54 singleton
+55 begin
+56 end
+57 internal
+58 singleton
+59 begin
+60 end
+61 internal
+62 singleton
+63 begin
+64 end
+65 internal
+66 singleton
+67 begin
+68 end
+69 internal
+70 singleton
+71 begin
+72 end
+73 internal
+74 singleton
+75 begin
+76 end
+77 internal
+78 singleton
+79 begin
+80 end
+81 internal
+82 singleton
+83 begin
+84 end
+85 internal
+86 singleton
+87 begin
+88 end
+89 internal
+90 singleton
+91 begin
+92 end
+93 internal
+94 singleton
+95 begin
+96 end
+97 internal
+98 singleton
+99 begin
+100 end
+101 internal
+102 singleton
+103 begin
+104 end
+105 internal
+106 singleton
+107 begin
+108 end
+109 internal
+110 singleton
+111 begin
+112 end
+113 internal
+114 singleton
+115 begin
+116 end
+117 internal
+118 singleton
+119 begin
+120 end
+121 internal
+122 singleton
+123 begin
+124 end
+125 internal
+126 singleton
+127 begin
+128 end
+129 internal
+130 singleton
+131 begin
+132 end
+133 internal
+134 singleton
+135 begin
+136 end
+137 internal
+138 singleton
+139 begin
+140 end
+141 internal
+142 singleton
+143 begin
+144 end
+145 internal
+146 singleton
+147 begin
+148 end
+149 internal
+150 singleton
+151 begin
+152 end
+153 internal
+154 singleton
+155 begin
+156 end
+157 internal
+158 singleton
+159 begin
+160 end
+161 internal
+162 singleton
+163 begin
+164 end
+165 internal
+166 singleton
+167 begin
+168 end
+169 internal
+170 singleton
+171 begin
+172 end
+173 internal
+174 singleton
+175 begin
+176 end
+177 internal
+178 singleton
+179 begin
+180 end
+181 internal
+182 singleton
+183 begin
+184 end
+185 internal
+186 singleton
+187 begin
+188 end
+189 internal
+190 singleton
+191 begin
+192 end
+193 internal
+194 singleton
+195 begin
+196 end
+197 internal
+198 singleton
+199 begin
+200 end
+201 internal
+202 singleton
+203 begin
+204 end
+205 internal
+206 singleton
+207 begin
+208 end
+209 internal
+210 singleton
+211 begin
+212 end
+213 internal
+214 singleton
+215 begin
+216 end
+217 internal
+218 singleton
+219 begin
+220 end
+221 internal
+222 singleton
+223 begin
+224 end
+225 internal
+226 singleton
+227 begin
+228 end
+229 internal
+230 singleton
+231 begin
+232 end
+233 internal
+234 singleton
+235 begin
+236 end
+237 internal
+238 singleton
+239 begin
+240 end
+241 internal
+242 singleton
+243 begin
+244 end
+245 internal
+246 singleton
+247 begin
+248 end
+249 internal
+250 singleton
+251 begin
+252 end
+253 internal
+254 singleton
+255 begin
+256 end
+257 internal
+258 singleton
+259 begin
+260 end
+261 internal
+262 singleton
+263 begin
+264 end
+265 internal
+266 singleton
+267 begin
+268 end
+269 internal
+270 singleton
+271 begin
+272 end
+273 internal
+274 singleton
+275 begin
+276 end
+277 internal
+278 singleton
+279 begin
+280 end
+281 internal
+282 singleton
+283 begin
+284 end
+285 internal
+286 singleton
+287 begin
+288 end
+289 internal
+290 singleton
+291 begin
+292 end
+293 internal
+294 singleton
+295 begin
+296 end
+297 internal
+298 singleton
+299 begin
+300 end
+301 internal
+302 singleton
+303 begin
+304 end
+305 internal
+306 singleton
+307 begin
+308 end
+309 internal
+310 singleton
+311 begin
+312 end
+313 internal
+314 singleton
+315 begin
+316 end
+317 internal
+318 singleton
+319 begin
+320 end
+321 internal
+322 singleton
+323 begin
+324 end
+325 internal
+326 singleton
+327 begin
+328 end
+329 internal
+330 singleton
+331 begin
+332 end
+333 internal
+334 singleton
+335 begin
+336 end
+337 internal
+338 singleton
+339 begin
+340 end
+341 internal
+342 singleton
+343 begin
+344 end
+345 internal
+346 singleton
+347 begin
+348 end
+349 internal
+350 singleton
+351 begin
+352 end
+353 internal
+354 singleton
+355 begin
+356 end
+357 internal
+358 singleton
+359 begin
+360 end
+361 internal
+362 singleton
+363 begin
+364 end
+365 internal
+366 singleton
+367 begin
+368 end
+369 internal
+370 singleton
+371 begin
+372 end
+373 internal
+374 singleton
+375 begin
+376 end
+377 internal
+378 singleton
+379 begin
+380 end
+381 internal
+382 singleton
+383 begin
+384 end
+385 internal
+386 singleton
+387 begin
+388 end
+389 internal
+390 singleton
+391 begin
+392 end
+393 internal
+394 singleton
+395 begin
+396 end
+397 internal
+398 singleton
+399 begin
+400 end
+401 internal
+402 singleton
+403 begin
+404 end
+405 internal
+406 singleton
+407 begin
+408 end
+409 internal
+410 singleton
+411 begin
+412 end
+413 internal
+414 singleton
+415 begin
+416 end
+417 internal
+418 singleton
+419 begin
+420 end
+421 internal
+422 singleton
+423 begin
+424 end
+425 internal
+426 singleton
+427 begin
+428 end
+429 internal
+430 singleton
+431 begin
+432 end
+433 internal
+434 singleton
+435 begin
+436 end
+437 internal
+438 singleton
+439 begin
+440 end
+441 internal
+442 singleton
+443 begin
+444 end
+445 internal
+446 singleton
+447 begin
+448 end
+449 internal
+450 singleton
+451 begin
+452 end
+453 internal
+454 singleton
+455 begin
+456 end
+457 internal
+458 singleton
+459 begin
+460 end
+461 internal
+462 singleton
+463 begin
+464 end
+465 internal
+466 singleton
+467 begin
+468 end
+469 internal
+470 singleton
+471 begin
+472 end
+473 internal
+474 singleton
+475 begin
+476 end
+477 internal
+478 singleton
+479 begin
+480 end
+481 internal
+482 singleton
+483 begin
+484 end
+485 internal
+486 singleton
+487 begin
+488 end
+489 internal
+490 singleton
+491 begin
+492 end
+493 internal
+494 singleton
+495 begin
+496 end
+497 internal
+498 singleton
+499 begin
+500 end
+501 internal
+502 singleton
+503 begin
+504 end
+505 internal
+506 singleton
+507 begin
+508 end
+509 internal
+510 singleton
+511 begin
+512 end
+513 internal
+514 singleton
+515 begin
+516 end
+517 internal
+518 singleton
+519 begin
+520 end
+521 internal
+522 singleton
+523 begin
+524 end
+525 internal
+526 singleton
+527 begin
+528 end
+529 internal
+530 singleton
+531 begin
+532 end
+533 internal
+534 singleton
+535 begin
+536 end
+537 internal
+538 singleton
+539 begin
+540 end
+541 internal
+542 singleton
+543 begin
+544 end
+545 internal
+546 singleton
+547 begin
+548 end
+549 internal
+550 singleton
+551 begin
+552 end
+553 internal
+554 singleton
+555 begin
+556 end
+557 internal
+558 singleton
+559 begin
+560 end
+561 internal
+562 singleton
+563 begin
+564 end
+565 internal
+566 singleton
+567 begin
+568 end
+569 internal
+570 singleton
+571 begin
+572 end
+573 internal
+574 singleton
+575 begin
+576 end
+577 internal
+578 singleton
+579 begin
+580 end
+581 internal
+582 singleton
+583 begin
+584 end
+585 internal
+586 singleton
+587 begin
+588 end
+589 internal
+590 singleton
+591 begin
+592 end
+593 internal
+594 singleton
+595 begin
+596 end
+597 internal
+598 singleton
+599 begin
+600 end
+601 internal
+602 singleton
+603 begin
+604 end
+605 internal
+606 singleton
+607 begin
+608 end
+609 internal
+610 singleton
+611 begin
+612 end
+613 internal
+614 singleton
+615 begin
+616 end
+617 internal
+618 singleton
+619 begin
+620 end
+621 internal
+622 singleton
+623 begin
+624 end
+625 internal
+626 singleton
+627 begin
+628 end
+629 internal
+630 singleton
+631 begin
+632 end
+633 internal
+634 singleton
+635 begin
+636 end
+637 internal
+638 singleton
+639 begin
+640 end
+641 internal
+642 singleton
+643 begin
+644 end
+645 internal
+646 singleton
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.dubm b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.dubm
new file mode 100644
index 0000000..bcf2689
Binary files /dev/null and b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.dubm differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.ie b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.ie
new file mode 100644
index 0000000..e1d78a2
Binary files /dev/null and b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.ie differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.mat b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.mat
new file mode 100644
index 0000000..1093236
Binary files /dev/null and b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/final.mat differ
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/global_cmvn.stats b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/global_cmvn.stats
new file mode 100644
index 0000000..500cc40
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/global_cmvn.stats
@@ -0,0 +1,3 @@
+ [
+ 1.117107e+11 -7.827721e+08 -1.101398e+10 -2.193934e+09 -1.347332e+10 -1.613916e+10 -1.199561e+10 -1.255081e+10 -1.638895e+10 -3.821099e+09 -1.372833e+10 -5.244242e+09 -1.098187e+10 -3.655235e+09 -9.364579e+09 -4.285302e+09 -6.296873e+09 -1.552953e+09 -3.176746e+09 -1.202976e+08 -9.857023e+08 2.316555e+08 -1.61059e+08 -5.891868e+07 3.465849e+08 -1.842054e+08 3.248211e+08 -1.483965e+08 3.739239e+08 -6.672061e+08 4.442288e+08 -9.274889e+08 5.142684e+08 4.292036e+07 2.206386e+08 -4.532715e+08 -2.092499e+08 -3.70488e+08 -8.079404e+07 -8.425977e+07 1.344125e+09
+ 9.982632e+12 1.02635e+12 8.634624e+11 9.06451e+11 9.652096e+11 1.12772e+12 9.468372e+11 9.141218e+11 9.670484e+11 6.936961e+11 8.141006e+11 6.256321e+11 6.087707e+11 4.616898e+11 4.212042e+11 2.862872e+11 2.498089e+11 1.470856e+11 1.099197e+11 5.780894e+10 3.118114e+10 1.060667e+10 1.466199e+09 4.173056e+08 5.257362e+09 1.277714e+10 2.114478e+10 2.974502e+10 3.587691e+10 4.078971e+10 4.247745e+10 4.382608e+10 4.62521e+10 4.575282e+10 3.546206e+10 3.041531e+10 2.838562e+10 2.258604e+10 1.715295e+10 1.303227e+10 0 ]
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/online_cmvn.conf b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/online_cmvn.conf
new file mode 100644
index 0000000..e69de29
diff --git a/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/splice.conf b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/splice.conf
new file mode 100644
index 0000000..960cd2e
--- /dev/null
+++ b/Src/app/src/main/assets/vosk-model-small-cn-0.22/ivector/splice.conf
@@ -0,0 +1,2 @@
+--left-context=3
+--right-context=3
diff --git a/Src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java b/Src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java
index c629a5c..d4d69af 100644
--- a/Src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java
+++ b/Src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java
@@ -32,6 +32,7 @@ import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageManager;
+import android.content.res.AssetManager;
import android.database.Cursor;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
@@ -87,9 +88,18 @@ import net.micode.notes.ui.NoteEditText.OnTextViewChangeListener;
import net.micode.notes.widget.NoteWidgetProvider_2x;
import net.micode.notes.widget.NoteWidgetProvider_4x;
+import org.json.JSONObject;
+import org.vosk.Model;
+import org.vosk.Recognizer;
+import org.vosk.android.RecognitionListener;
+import org.vosk.android.SpeechService;
+
import java.io.File;
import java.io.FileNotFoundException;
+import java.io.FileOutputStream;
import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
@@ -210,10 +220,14 @@ public class NoteEditActivity extends Activity implements OnClickListener,
// initResources(); // 初始化资源
// }
private final int PHOTO_REQUEST=1;
-
+ private Model model;
+ private SpeechService speechService;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
+ System.setProperty("jna.nosys", "true");
+ System.setProperty("jna.boot.library.path", getApplicationInfo().nativeLibraryDir);
+ Log.d("Vosk", "Native library path: " + getApplicationInfo().nativeLibraryDir);
this.setContentView(R.layout.note_edit);
@@ -257,6 +271,26 @@ public class NoteEditActivity extends Activity implements OnClickListener,
}
}
});
+ // 加载模型
+ new Thread(() -> {
+ try {
+ File modelDir = new File(getFilesDir(), "vosk-model-small-cn-0.22");
+
+ // 检查模型文件是否完整
+ if (!modelDir.exists() || !new File(modelDir, "ivector").exists()) {
+ Log.e("ModelCheck", "模型文件不完整,开始复制模型文件...");
+ copyAssetsFolder("vosk-model-small-cn-0.22", modelDir);
+ }
+
+ Log.d("Vosk", "开始加载模型...");
+ model = new Model(modelDir.getAbsolutePath());
+ Log.d("Vosk", "模型加载成功");
+ } catch (IOException e) {
+ e.printStackTrace();
+ Log.e("Vosk", "模型加载失败:" + e.getMessage());
+ }
+ }).start();
+
// 根据id获取语音转文字按钮
final ImageButton speech_to_text_btn = (ImageButton) findViewById(R.id.speech_to_text_btn);
@@ -267,6 +301,38 @@ public class NoteEditActivity extends Activity implements OnClickListener,
}
});
}
+
+ private void copyAssetsFolder(String assetDir, File outDir) throws IOException {
+ AssetManager assetManager = getAssets();
+ String[] files = assetManager.list(assetDir);
+ if (files != null && files.length > 0) {
+ // 如果目标目录不存在,则创建
+ if (!outDir.exists()) {
+ outDir.mkdirs();
+ }
+ for (String file : files) {
+ String assetPath = assetDir + "/" + file;
+ File outFile = new File(outDir, file);
+ // 如果是文件夹,递归调用
+ if (assetManager.list(assetPath).length > 0) {
+ copyAssetsFolder(assetPath, outFile);
+ } else {
+ // 复制文件
+ try (InputStream in = assetManager.open(assetPath);
+ OutputStream out = new FileOutputStream(outFile)) {
+ byte[] buffer = new byte[1024];
+ int read;
+ while ((read = in.read(buffer)) != -1) {
+ out.write(buffer, 0, read);
+ }
+ }
+ }
+ }
+ }
+ }
+
+
+
/**
* 当活动被系统销毁后,为了恢复之前的状态,此方法会被调用。
* 主要用于处理活动重新创建时的数据恢复。
@@ -1518,15 +1584,62 @@ public class NoteEditActivity extends Activity implements OnClickListener,
}
private void startSpeechToText() {
- Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
- intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
- intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());
- intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speak now...");
- try {
- startActivityForResult(intent, REQUEST_SPEECH_INPUT);
- } catch (ActivityNotFoundException e) {
- Toast.makeText(this, "Speech to text not supported", Toast.LENGTH_SHORT).show();
+ if (speechService != null) {
+ speechService.stop(); // 停止之前的语音服务
+ speechService = null;
+ } else {
+ try {
+ Recognizer recognizer = new Recognizer(model, 16000.0f); // 确认模型加载成功
+ speechService = new SpeechService(recognizer, 16000.0f); // 初始化服务
+ Log.d("SpeechService", "Recognizer started");
+ speechService.startListening(new RecognitionListener() {
+ @Override
+ public void onPartialResult(String hypothesis) {
+ }
+
+ @Override
+ public void onResult(String hypothesis) {
+ Log.d("SpeechService", "Final result: " + hypothesis);
+ // 识别完成时,插入文本到光标位置
+ runOnUiThread(() -> {
+ try {
+ JSONObject json = new JSONObject(hypothesis);
+ String text = json.optString("text");
+
+ // 获取光标位置并插入文本
+ int cursorPosition = mNoteEditor.getSelectionStart();
+ Editable editableText = mNoteEditor.getText();
+ editableText.insert(cursorPosition, text + " "); // 插入文字到光标处
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ });
+ }
+
+ @Override
+ public void onFinalResult(String hypothesis) {
+ // 停止服务
+ speechService = null;
+ }
+
+ @Override
+ public void onError(Exception e) {
+ e.printStackTrace();
+ runOnUiThread(() -> Toast.makeText(NoteEditActivity.this, "Recognition error", Toast.LENGTH_SHORT).show());
+ }
+
+ @Override
+ public void onTimeout() {
+ speechService = null;
+ }
+ });
+ } catch (IOException e) {
+ e.printStackTrace();
+ Toast.makeText(this, "Failed to start recognition", Toast.LENGTH_SHORT).show();
+ }
}
}
+
+
}
diff --git a/Src/app/src/main/jniLibs/arm64-v8a/libjnidispatch.so b/Src/app/src/main/jniLibs/arm64-v8a/libjnidispatch.so
new file mode 100644
index 0000000..61553b2
Binary files /dev/null and b/Src/app/src/main/jniLibs/arm64-v8a/libjnidispatch.so differ
diff --git a/Src/app/src/main/jniLibs/arm64-v8a/libvosk.so b/Src/app/src/main/jniLibs/arm64-v8a/libvosk.so
new file mode 100644
index 0000000..0746b58
Binary files /dev/null and b/Src/app/src/main/jniLibs/arm64-v8a/libvosk.so differ
diff --git a/Src/app/src/main/jniLibs/armeabi-v7a/libjnidispatch.so b/Src/app/src/main/jniLibs/armeabi-v7a/libjnidispatch.so
new file mode 100644
index 0000000..0683481
Binary files /dev/null and b/Src/app/src/main/jniLibs/armeabi-v7a/libjnidispatch.so differ
diff --git a/Src/app/src/main/jniLibs/armeabi-v7a/libvosk.so b/Src/app/src/main/jniLibs/armeabi-v7a/libvosk.so
new file mode 100644
index 0000000..d2daebf
Binary files /dev/null and b/Src/app/src/main/jniLibs/armeabi-v7a/libvosk.so differ
diff --git a/Src/app/src/main/jniLibs/x86/libjnidispatch.so b/Src/app/src/main/jniLibs/x86/libjnidispatch.so
new file mode 100644
index 0000000..8587fdf
Binary files /dev/null and b/Src/app/src/main/jniLibs/x86/libjnidispatch.so differ
diff --git a/Src/app/src/main/jniLibs/x86/libvosk.so b/Src/app/src/main/jniLibs/x86/libvosk.so
new file mode 100644
index 0000000..6ffc041
Binary files /dev/null and b/Src/app/src/main/jniLibs/x86/libvosk.so differ
diff --git a/Src/app/src/main/jniLibs/x86_64/libjnidispatch.so b/Src/app/src/main/jniLibs/x86_64/libjnidispatch.so
new file mode 100644
index 0000000..e3475dc
Binary files /dev/null and b/Src/app/src/main/jniLibs/x86_64/libjnidispatch.so differ
diff --git a/Src/app/src/main/jniLibs/x86_64/libvosk.so b/Src/app/src/main/jniLibs/x86_64/libvosk.so
new file mode 100644
index 0000000..3ecff4c
Binary files /dev/null and b/Src/app/src/main/jniLibs/x86_64/libvosk.so differ
diff --git a/Src/build.gradle b/Src/build.gradle
index c5bff8c..6512000 100644
--- a/Src/build.gradle
+++ b/Src/build.gradle
@@ -3,6 +3,7 @@ buildscript {
repositories {
google()
jcenter()
+ mavenCentral() // Maven Central 仓库
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
@@ -17,5 +18,6 @@ allprojects {
repositories {
google()
jcenter()
+ mavenCentral() // Maven Central 仓库
}
}