Update Constants.kt
on the emulator, this works. and DESCRIPTION is correct in the file. from MY tests. in `helpers/IcsExporter.kt` line 90: `writeLn("$DESCRIPTION_EXPORT$reminderLabel")` line 121: `out.writeLn("$DESCRIPTION_EXPORT$substring")` in `helpers/Constants.kt` add `const val DESCRIPTION_EXPORT = "DESCRIPTION:"` on the actual phone. no dice. i get an export file with 0 bytes. emulator works great, i think i'll just use the emulator instead. i don't know what to make of this now. any ideas, on why my phone and probably many other will not work correctly? or is my phone the problem?? not sure what to work on. let me know your findings, please?
This commit is contained in:
parent
acaa5910a6
commit
90e2b5295c
|
@ -160,6 +160,7 @@ const val DTSTAMP = "DTSTAMP:"
|
||||||
const val DURATION = "DURATION:"
|
const val DURATION = "DURATION:"
|
||||||
const val SUMMARY = "SUMMARY"
|
const val SUMMARY = "SUMMARY"
|
||||||
const val DESCRIPTION = "DESCRIPTION"
|
const val DESCRIPTION = "DESCRIPTION"
|
||||||
|
const val DESCRIPTION_EXPORT = "DESCRIPTION:"
|
||||||
val DESCRIPTION_REGEX = Regex("""DESCRIPTION(?:;[^:]*="[^"]*")*:(.*(?:\r?\n(?!\s).*)*)""")
|
val DESCRIPTION_REGEX = Regex("""DESCRIPTION(?:;[^:]*="[^"]*")*:(.*(?:\r?\n(?!\s).*)*)""")
|
||||||
const val UID = "UID:"
|
const val UID = "UID:"
|
||||||
const val ACTION = "ACTION:"
|
const val ACTION = "ACTION:"
|
||||||
|
|
Loading…
Reference in New Issue