Move PNG files for Android and iOS project.
Suppose you have these images exported from Avocode in ~/Downloads/test
:
.
├── image_distance-hdpi.png
├── image_distance-mdpi.png
package net.swiftzer.metroride.app.customtab | |
import android.content.ActivityNotFoundException | |
import android.content.ComponentName | |
import android.content.Context | |
import android.content.Intent | |
import android.content.pm.PackageManager | |
import android.net.Uri | |
import androidx.browser.customtabs.CustomTabsCallback | |
import androidx.browser.customtabs.CustomTabsClient |
package net.swiftzer.metroride.common | |
enum class AppLocale { | |
SystemDefault, | |
English, | |
Chinese, | |
} |
import android.view.ViewGroup | |
import androidx.compose.foundation.background | |
import androidx.compose.foundation.layout.Box | |
import androidx.compose.foundation.layout.defaultMinSize | |
import androidx.compose.foundation.layout.padding | |
import androidx.compose.material.Text | |
import androidx.compose.runtime.Composable | |
import androidx.compose.runtime.DisposableEffect | |
import androidx.compose.ui.Alignment | |
import androidx.compose.ui.Modifier |
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
xmlns:tools="http://schemas.android.com/tools" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:orientation="vertical" | |
tools:context=".MainActivity"> | |
<!-- Simple horizontal chain --> |
package com.example.annotation.annotation | |
@Retention(AnnotationRetention.SOURCE) | |
@Target(AnnotationTarget.FUNCTION) | |
@MustBeDocumented | |
annotation class FeatureFlag(val key: String, val defaultValue: Boolean) |
Disable animation
adb shell settings put global window_animation_scale 0
adb shell settings put global transition_animation_scale 0
adb shell settings put global animator_duration_scale 0
Enable animation
Name | Prize | Sent By | Sent At | ||
---|---|---|---|---|---|
[email protected] | Atlas Cantu | Google Pixel 3 | |||
[email protected] | Keir James | Huawei Mate 20 Pro | |||
[email protected] | Rhianne Kendall | Samsung Galaxy Note 9 | |||
[email protected] | Lillie-Rose Hahn | Sony Xperia XZ3 | |||
[email protected] | Leyton Zamora | LG G7 ThinQ |
const puppeteer = require('puppeteer'); | |
const readline = require('readline'); | |
const sleep = require('util').promisify(setTimeout); | |
require('dotenv').config(); | |
const EVENT_SELECTOR = 'select#ddlEvent'; | |
const NAME_SELECTOR = 'input#username'; | |
const EMAIL_SELECTOR = 'input#email'; | |
const CAPTCHA_SELECTOR = 'input#captcha-form'; |