Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 66d28761a8 | |||
| ec478531da | |||
| 5ade80a334 |
@@ -62,13 +62,28 @@ class SyncEngine @Inject constructor(
|
|||||||
else
|
else
|
||||||
LocalAccessor.JavaFile(File(localPath))
|
LocalAccessor.JavaFile(File(localPath))
|
||||||
|
|
||||||
private suspend fun performSync(pair: SyncPair, provider: CloudProvider): SyncResult {
|
private suspend fun performSync(
|
||||||
|
pair: SyncPair,
|
||||||
|
provider: CloudProvider,
|
||||||
|
isRetry: Boolean = false,
|
||||||
|
): SyncResult {
|
||||||
val accessor = makeAccessor(pair.localPath)
|
val accessor = makeAccessor(pair.localPath)
|
||||||
val knownStates = fileStateDao.getForPair(pair.id).associateBy { it.relativePath }
|
var knownStates = fileStateDao.getForPair(pair.id).associateBy { it.relativePath }
|
||||||
val remoteFiles = provider.listFiles(pair.remotePath).getOrThrow()
|
val remoteFiles = provider.listFiles(pair.remotePath).getOrThrow()
|
||||||
.associateBy { it.path.removePrefix(pair.remotePath).trimStart('/') }
|
.associateBy { it.path.removePrefix(pair.remotePath).trimStart('/') }
|
||||||
val localFiles = accessor.walkFiles(pair)
|
val localFiles = accessor.walkFiles(pair)
|
||||||
|
|
||||||
|
// Self-healing: if every known-state path is absent from the current local scan but
|
||||||
|
// the local folder does have files, the localPath was changed without clearing state.
|
||||||
|
// The stale records would cause every old file to look like "DELETE_REMOTE" and every
|
||||||
|
// new file to re-upload indefinitely. Wipe and retry once as a fresh initial sync.
|
||||||
|
if (!isRetry && knownStates.isNotEmpty() && localFiles.isNotEmpty() &&
|
||||||
|
knownStates.keys.none { it in localFiles }) {
|
||||||
|
Timber.w("SyncEngine: stale folder states detected for pair ${pair.id} — resetting")
|
||||||
|
fileStateDao.deleteForPair(pair.id)
|
||||||
|
return performSync(pair, provider, isRetry = true)
|
||||||
|
}
|
||||||
|
|
||||||
val allPaths = (localFiles.keys + remoteFiles.keys + knownStates.keys).toSet()
|
val allPaths = (localFiles.keys + remoteFiles.keys + knownStates.keys).toSet()
|
||||||
val hasPriorSyncState = knownStates.isNotEmpty()
|
val hasPriorSyncState = knownStates.isNotEmpty()
|
||||||
val semaphore = Semaphore(4)
|
val semaphore = Semaphore(4)
|
||||||
|
|||||||
@@ -23,6 +23,8 @@ import com.syncflow.data.db.SyncPairDao
|
|||||||
import com.syncflow.domain.model.ScheduleType
|
import com.syncflow.domain.model.ScheduleType
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import kotlinx.coroutines.*
|
import kotlinx.coroutines.*
|
||||||
|
import kotlinx.coroutines.sync.Mutex
|
||||||
|
import kotlinx.coroutines.sync.withLock
|
||||||
import timber.log.Timber
|
import timber.log.Timber
|
||||||
import java.io.File
|
import java.io.File
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
@@ -35,11 +37,16 @@ class FileWatchService : Service() {
|
|||||||
|
|
||||||
private val scope = CoroutineScope(Dispatchers.IO + SupervisorJob())
|
private val scope = CoroutineScope(Dispatchers.IO + SupervisorJob())
|
||||||
private val mainHandler = Handler(Looper.getMainLooper())
|
private val mainHandler = Handler(Looper.getMainLooper())
|
||||||
|
// Prevents concurrent refresh() calls from doubling watchers + catchup scans
|
||||||
|
private val refreshMutex = Mutex()
|
||||||
|
|
||||||
// Multiple FileObserver instances per pair: one per directory (recursive)
|
// Multiple FileObserver instances per pair: one per directory (recursive)
|
||||||
private val fileObservers = mutableMapOf<Long, MutableList<FileObserver>>()
|
private val fileObservers = mutableMapOf<Long, MutableList<FileObserver>>()
|
||||||
private val contentObservers = mutableMapOf<Long, ContentObserver>()
|
private val contentObservers = mutableMapOf<Long, ContentObserver>()
|
||||||
private val debounceJobs = mutableMapOf<Long, Job>()
|
private val debounceJobs = mutableMapOf<Long, Job>()
|
||||||
|
// After a watcher-triggered sync completes, suppress FileObserver events for this long
|
||||||
|
// to stop the feedback loop: sync writes files → FileObserver fires → another sync → repeat.
|
||||||
|
private val syncCooldownUntil = mutableMapOf<Long, Long>()
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
const val CHANNEL_WATCH = "sync_watching"
|
const val CHANNEL_WATCH = "sync_watching"
|
||||||
@@ -78,7 +85,7 @@ class FileWatchService : Service() {
|
|||||||
|
|
||||||
override fun onBind(intent: Intent?): IBinder? = null
|
override fun onBind(intent: Intent?): IBinder? = null
|
||||||
|
|
||||||
private suspend fun refresh() {
|
private suspend fun refresh() = refreshMutex.withLock {
|
||||||
clearWatchers()
|
clearWatchers()
|
||||||
val pairs = syncPairDao.getEnabled().filter { it.scheduleType == ScheduleType.ON_CHANGE }
|
val pairs = syncPairDao.getEnabled().filter { it.scheduleType == ScheduleType.ON_CHANGE }
|
||||||
|
|
||||||
@@ -142,6 +149,9 @@ class FileWatchService : Service() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
fileObservers[pairId] = mutableListOf()
|
fileObservers[pairId] = mutableListOf()
|
||||||
|
// Set startup cooldown BEFORE registering watchers so inotify events that fire
|
||||||
|
// immediately on registration don't trigger the debounce before catchupScan runs.
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 15_000
|
||||||
watchDirRecursive(dir, pairId, wifiOnly, chargingOnly)
|
watchDirRecursive(dir, pairId, wifiOnly, chargingOnly)
|
||||||
Timber.d("FileWatchService: watching pair $pairId at $path (${fileObservers[pairId]?.size} dirs)")
|
Timber.d("FileWatchService: watching pair $pairId at $path (${fileObservers[pairId]?.size} dirs)")
|
||||||
scope.launch { catchupScan(pairId, dir, wifiOnly, chargingOnly) }
|
scope.launch { catchupScan(pairId, dir, wifiOnly, chargingOnly) }
|
||||||
@@ -200,36 +210,66 @@ class FileWatchService : Service() {
|
|||||||
if (hasNew || hasModified || hasDeleted) {
|
if (hasNew || hasModified || hasDeleted) {
|
||||||
Timber.d("FileWatchService: catchup detected changes for pair $pairId, scheduling sync")
|
Timber.d("FileWatchService: catchup detected changes for pair $pairId, scheduling sync")
|
||||||
val pair = syncPairDao.getById(pairId) ?: return
|
val pair = syncPairDao.getById(pairId) ?: return
|
||||||
|
// Cancel any debounce that started before our startup cooldown was set
|
||||||
|
debounceJobs[pairId]?.cancel()
|
||||||
|
debounceJobs.remove(pairId)
|
||||||
|
// Hold cooldown for duration of sync + 60s settle
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 120_000
|
||||||
|
val req = SyncWorker.buildOneTimeRequest(pairId, wifiOnly, chargingOnly)
|
||||||
WorkManager.getInstance(applicationContext)
|
WorkManager.getInstance(applicationContext)
|
||||||
.enqueueUniqueWork(
|
.enqueueUniqueWork("catchup_$pairId", ExistingWorkPolicy.KEEP, req)
|
||||||
"catchup_$pairId",
|
scope.launch {
|
||||||
ExistingWorkPolicy.KEEP,
|
try {
|
||||||
SyncWorker.buildOneTimeRequest(pairId, wifiOnly, chargingOnly),
|
WorkManager.getInstance(applicationContext)
|
||||||
)
|
.getWorkInfoByIdFlow(req.id)
|
||||||
|
.first { it?.state?.isFinished == true }
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 60_000
|
||||||
|
} catch (e: CancellationException) {
|
||||||
|
throw e
|
||||||
|
} catch (_: Exception) {
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 60_000
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun onChangeDetected(pairId: Long, wifiOnly: Boolean, chargingOnly: Boolean) {
|
private fun onChangeDetected(pairId: Long, wifiOnly: Boolean, chargingOnly: Boolean) {
|
||||||
|
// Ignore events fired by our own sync writing files — prevents the feedback loop
|
||||||
|
// where downloaded/uploaded files trigger another sync indefinitely.
|
||||||
|
if (System.currentTimeMillis() < (syncCooldownUntil[pairId] ?: 0L)) {
|
||||||
|
Timber.d("FileWatchService: suppressing change event for pair $pairId (sync cooldown)")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
debounceJobs[pairId]?.cancel()
|
debounceJobs[pairId]?.cancel()
|
||||||
debounceJobs[pairId] = scope.launch {
|
debounceJobs[pairId] = scope.launch {
|
||||||
delay(5_000)
|
delay(5_000)
|
||||||
|
// Re-check: catchupScan or another path may have already set a cooldown
|
||||||
|
// and handled this sync while we were waiting.
|
||||||
|
if (System.currentTimeMillis() < (syncCooldownUntil[pairId] ?: 0L)) {
|
||||||
|
Timber.d("FileWatchService: debounce fired but cooldown active for pair $pairId, skipping")
|
||||||
|
return@launch
|
||||||
|
}
|
||||||
val pair = syncPairDao.getById(pairId)
|
val pair = syncPairDao.getById(pairId)
|
||||||
if (pair == null || !pair.isEnabled) return@launch
|
if (pair == null || !pair.isEnabled) return@launch
|
||||||
Timber.d("FileWatchService: triggering sync for pair $pairId after debounce")
|
Timber.d("FileWatchService: triggering sync for pair $pairId after debounce")
|
||||||
|
|
||||||
|
// Block new triggers from this point until 60s after sync completes
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 120_000
|
||||||
|
|
||||||
val req = SyncWorker.buildOneTimeRequest(pairId, wifiOnly, chargingOnly, silent = true)
|
val req = SyncWorker.buildOneTimeRequest(pairId, wifiOnly, chargingOnly, silent = true)
|
||||||
WorkManager.getInstance(applicationContext)
|
WorkManager.getInstance(applicationContext)
|
||||||
.enqueueUniqueWork("onchange_$pairId", ExistingWorkPolicy.KEEP, req)
|
.enqueueUniqueWork("onchange_$pairId", ExistingWorkPolicy.KEEP, req)
|
||||||
|
|
||||||
// Update notification while sync is in progress
|
|
||||||
updateNotificationDynamic("Syncing: ${pair.name}…")
|
updateNotificationDynamic("Syncing: ${pair.name}…")
|
||||||
|
|
||||||
// Wait for completion and show result in the persistent notification
|
|
||||||
scope.launch {
|
scope.launch {
|
||||||
try {
|
try {
|
||||||
val info = WorkManager.getInstance(applicationContext)
|
val info = WorkManager.getInstance(applicationContext)
|
||||||
.getWorkInfoByIdFlow(req.id)
|
.getWorkInfoByIdFlow(req.id)
|
||||||
.first { it?.state?.isFinished == true }
|
.first { it?.state?.isFinished == true }
|
||||||
|
// Extend cooldown: 60s after sync finishes to let filesystem settle
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 60_000
|
||||||
val summary = info?.outputData?.getString(SyncWorker.KEY_RESULT_SUMMARY)
|
val summary = info?.outputData?.getString(SyncWorker.KEY_RESULT_SUMMARY)
|
||||||
val watchCount = fileObservers.keys.size + contentObservers.size
|
val watchCount = fileObservers.keys.size + contentObservers.size
|
||||||
val watching = "Watching $watchCount folder${if (watchCount != 1) "s" else ""}"
|
val watching = "Watching $watchCount folder${if (watchCount != 1) "s" else ""}"
|
||||||
@@ -239,8 +279,11 @@ class FileWatchService : Service() {
|
|||||||
updateNotificationDynamic("$watching")
|
updateNotificationDynamic("$watching")
|
||||||
}
|
}
|
||||||
delay(12_000)
|
delay(12_000)
|
||||||
updateNotificationDynamic(null) // revert to default watching text
|
updateNotificationDynamic(null)
|
||||||
|
} catch (e: CancellationException) {
|
||||||
|
throw e
|
||||||
} catch (_: Exception) {
|
} catch (_: Exception) {
|
||||||
|
syncCooldownUntil[pairId] = System.currentTimeMillis() + 60_000
|
||||||
updateNotificationDynamic(null)
|
updateNotificationDynamic(null)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -254,6 +297,7 @@ class FileWatchService : Service() {
|
|||||||
contentObservers.clear()
|
contentObservers.clear()
|
||||||
debounceJobs.values.forEach { it.cancel() }
|
debounceJobs.values.forEach { it.cancel() }
|
||||||
debounceJobs.clear()
|
debounceJobs.clear()
|
||||||
|
syncCooldownUntil.clear()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun ensureChannel() {
|
private fun ensureChannel() {
|
||||||
|
|||||||
@@ -1,25 +1,12 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:aapt="http://schemas.android.com/aapt"
|
|
||||||
android:width="108dp"
|
android:width="108dp"
|
||||||
android:height="108dp"
|
android:height="108dp"
|
||||||
android:viewportWidth="108"
|
android:viewportWidth="108"
|
||||||
android:viewportHeight="108">
|
android:viewportHeight="108">
|
||||||
|
|
||||||
<!-- Dark charcoal background, matching Avast-style dark icon bg -->
|
<!-- Pure black background -->
|
||||||
<path android:pathData="M0,0 H108 V108 H0 Z"
|
<path android:pathData="M0,0 H108 V108 H0 Z"
|
||||||
android:fillColor="#1F1F2E"/>
|
android:fillColor="#000000"/>
|
||||||
|
|
||||||
<!-- Very subtle inner glow -->
|
|
||||||
<path android:pathData="M0,0 H108 V108 H0 Z"
|
|
||||||
android:fillAlpha="0.25">
|
|
||||||
<aapt:attr name="android:fillColor">
|
|
||||||
<gradient android:type="radial"
|
|
||||||
android:gradientRadius="60"
|
|
||||||
android:centerX="54" android:centerY="50"
|
|
||||||
android:startColor="#3D3A50"
|
|
||||||
android:endColor="#00000000"/>
|
|
||||||
</aapt:attr>
|
|
||||||
</path>
|
|
||||||
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|||||||
@@ -1,102 +1,84 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!--
|
|
||||||
SyncFlow icon foreground.
|
|
||||||
Design: three bold teardrop "speed streak" shapes in Avast color palette
|
|
||||||
(teal, red, yellow) converging on a white cloud in the centre.
|
|
||||||
Each teardrop has a pointed tail (far from cloud) and a wide rounded head
|
|
||||||
(near the cloud), like motion streaks flying into the sync point.
|
|
||||||
|
|
||||||
Safe zone: 18-90dp band. Cloud centred at (54, 55).
|
|
||||||
-->
|
|
||||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:aapt="http://schemas.android.com/aapt"
|
|
||||||
android:width="108dp"
|
android:width="108dp"
|
||||||
android:height="108dp"
|
android:height="108dp"
|
||||||
android:viewportWidth="108"
|
android:viewportWidth="108"
|
||||||
android:viewportHeight="108">
|
android:viewportHeight="108">
|
||||||
|
|
||||||
<!-- SHADOW layer under teardrops for depth -->
|
<!--
|
||||||
|
Four thick arcs arranged as an interlocked pinwheel.
|
||||||
|
Each arc sweeps ~210 degrees, rounded caps, radius 18 from center (54,54).
|
||||||
|
Draw order creates natural over/under at the four crossing points:
|
||||||
|
blue under green, green under red, red under orange, orange under blue (re-draw blue tip).
|
||||||
|
|
||||||
|
Arc endpoints computed at radius 18, sweep 210 deg clockwise:
|
||||||
|
start angle end angle start point end point
|
||||||
|
270 (top) 120 (54, 36) (45, 70)
|
||||||
|
0 (right) 210 (72, 54) (39, 45)
|
||||||
|
90 (bot) 300 (54, 72) (63, 38)
|
||||||
|
180 (left) 390=30 (36, 54) (69, 63)
|
||||||
|
-->
|
||||||
|
|
||||||
|
<!-- Blue — starts at top, sweeps clockwise to lower-left -->
|
||||||
|
<path
|
||||||
|
android:strokeColor="#2979FF"
|
||||||
|
android:strokeWidth="8.5"
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:strokeLineCap="round"
|
||||||
|
android:pathData="M 54,36 A 18,18 0 1,1 45,70"/>
|
||||||
|
|
||||||
|
<!-- Green — starts at bottom, sweeps clockwise to upper-right -->
|
||||||
|
<path
|
||||||
|
android:strokeColor="#00C853"
|
||||||
|
android:strokeWidth="8.5"
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:strokeLineCap="round"
|
||||||
|
android:pathData="M 54,72 A 18,18 0 1,1 63,38"/>
|
||||||
|
|
||||||
|
<!-- Red — starts at right, sweeps clockwise to lower-left -->
|
||||||
|
<path
|
||||||
|
android:strokeColor="#E53935"
|
||||||
|
android:strokeWidth="8.5"
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:strokeLineCap="round"
|
||||||
|
android:pathData="M 72,54 A 18,18 0 1,1 39,45"/>
|
||||||
|
|
||||||
|
<!-- Orange — starts at left, sweeps clockwise to upper-right -->
|
||||||
|
<path
|
||||||
|
android:strokeColor="#FF6D00"
|
||||||
|
android:strokeWidth="8.5"
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:strokeLineCap="round"
|
||||||
|
android:pathData="M 36,54 A 18,18 0 1,1 69,63"/>
|
||||||
|
|
||||||
|
<!-- Re-draw blue start cap on top so it goes OVER orange end -->
|
||||||
|
<path
|
||||||
|
android:strokeColor="#2979FF"
|
||||||
|
android:strokeWidth="8.5"
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:strokeLineCap="round"
|
||||||
|
android:pathData="M 54,36 A 18,18 0 0,1 62,37.5"/>
|
||||||
|
|
||||||
|
<!-- White sync circle at center -->
|
||||||
<path
|
<path
|
||||||
android:pathData="M 54,28 C 42,28 30,36 32,50 C 22,55 22,70 34,72 L 74,72 C 84,72 88,62 82,55 C 86,43 76,33 66,35 C 62,30 58,28 54,28 Z"
|
|
||||||
android:fillColor="#000000"
|
android:fillColor="#000000"
|
||||||
android:fillAlpha="0.20"
|
android:pathData="M 45,54 A 9,9 0 1,0 63,54 A 9,9 0 1,0 45,54 Z"/>
|
||||||
android:translateY="2.5"/>
|
|
||||||
|
|
||||||
<!-- TEAL teardrop: enters from upper-left, tail at (22,22), head near cloud top-left -->
|
<!-- Sync ring -->
|
||||||
<!-- Teardrop shape: pointed at tail, fat elliptical head, rotated ~45 deg into centre -->
|
|
||||||
<path
|
<path
|
||||||
android:pathData="M 35.5,26.5
|
android:strokeColor="#FFFFFF"
|
||||||
C 30,21 22,22 22,22
|
android:strokeWidth="2.5"
|
||||||
C 22,22 27,30 32.5,35.5
|
|
||||||
C 36,38 40,40 43,42
|
|
||||||
C 40,39 36,32 35.5,26.5 Z">
|
|
||||||
<aapt:attr name="android:fillColor">
|
|
||||||
<gradient android:type="linear"
|
|
||||||
android:startX="22" android:startY="22"
|
|
||||||
android:endX="43" android:endY="42"
|
|
||||||
android:startColor="#00BFA5"
|
|
||||||
android:endColor="#26D6C0"/>
|
|
||||||
</aapt:attr>
|
|
||||||
</path>
|
|
||||||
|
|
||||||
<!-- RED teardrop: enters from upper-right, tail at (86,22), head near cloud top-right -->
|
|
||||||
<path
|
|
||||||
android:pathData="M 72.5,26.5
|
|
||||||
C 78,21 86,22 86,22
|
|
||||||
C 86,22 81,30 75.5,35.5
|
|
||||||
C 72,38 68,40 65,42
|
|
||||||
C 68,39 72,32 72.5,26.5 Z">
|
|
||||||
<aapt:attr name="android:fillColor">
|
|
||||||
<gradient android:type="linear"
|
|
||||||
android:startX="86" android:startY="22"
|
|
||||||
android:endX="65" android:endY="42"
|
|
||||||
android:startColor="#E53935"
|
|
||||||
android:endColor="#EF6558"/>
|
|
||||||
</aapt:attr>
|
|
||||||
</path>
|
|
||||||
|
|
||||||
<!-- YELLOW teardrop: enters from bottom-centre, tail at (54,88), head near cloud base -->
|
|
||||||
<path
|
|
||||||
android:pathData="M 48,75
|
|
||||||
C 45,82 47,88 54,88
|
|
||||||
C 61,88 63,82 60,75
|
|
||||||
C 58,71 56,68 54,66
|
|
||||||
C 52,68 50,71 48,75 Z">
|
|
||||||
<aapt:attr name="android:fillColor">
|
|
||||||
<gradient android:type="linear"
|
|
||||||
android:startX="54" android:startY="88"
|
|
||||||
android:endX="54" android:endY="66"
|
|
||||||
android:startColor="#F9A825"
|
|
||||||
android:endColor="#FFD740"/>
|
|
||||||
</aapt:attr>
|
|
||||||
</path>
|
|
||||||
|
|
||||||
<!-- CLOUD body (white, centred at 54,50) -->
|
|
||||||
<path
|
|
||||||
android:pathData="
|
|
||||||
M 36,62
|
|
||||||
A 9,9 0 0,1 36,44
|
|
||||||
A 9,9 0 0,1 45,36
|
|
||||||
A 12,12 0 0,1 66,37
|
|
||||||
A 8,8 0 0,1 74,48
|
|
||||||
A 8,8 0 0,1 68,62
|
|
||||||
Z"
|
|
||||||
android:fillColor="#FFFFFF"/>
|
|
||||||
|
|
||||||
<!-- Teal highlight on cloud top-left edge -->
|
|
||||||
<path
|
|
||||||
android:pathData="M 36,53 A 9,9 0 0,1 41,38"
|
|
||||||
android:fillColor="#00000000"
|
android:fillColor="#00000000"
|
||||||
android:strokeWidth="2"
|
android:pathData="M 46.5,54 A 7.5,7.5 0 1,0 61.5,54 A 7.5,7.5 0 1,0 46.5,54 Z"/>
|
||||||
android:strokeLineCap="round"
|
|
||||||
android:strokeColor="#4000BFA5"/>
|
|
||||||
|
|
||||||
<!-- Red highlight on cloud top-right edge -->
|
<!-- Top arrow head (pointing up) -->
|
||||||
<path
|
<path
|
||||||
android:pathData="M 63,37 A 8,8 0 0,1 73,48"
|
android:fillColor="#FFFFFF"
|
||||||
android:fillColor="#00000000"
|
android:pathData="M 54,46.5 L 57,50.5 L 51,50.5 Z"/>
|
||||||
android:strokeWidth="2"
|
|
||||||
android:strokeLineCap="round"
|
<!-- Bottom arrow head (pointing down) -->
|
||||||
android:strokeColor="#40E53935"/>
|
<path
|
||||||
|
android:fillColor="#FFFFFF"
|
||||||
|
android:pathData="M 54,61.5 L 51,57.5 L 57,57.5 Z"/>
|
||||||
|
|
||||||
</vector>
|
</vector>
|
||||||
|
|||||||
+2
-2
@@ -1,2 +1,2 @@
|
|||||||
VERSION_NAME=1.0.28
|
VERSION_NAME=1.0.31
|
||||||
VERSION_CODE=29
|
VERSION_CODE=32
|
||||||
|
|||||||
Reference in New Issue
Block a user