I hereby claim:
- I am stelianmorariu on github.
- I am stelianmorariu (https://keybase.io/stelianmorariu) on keybase.
- I have a public key ASCa33kHWJm1r7DG0Mkk-tsisuk0hTd37Icwrw32EwecyAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
* Copyright 2023 The Android Open Source Project | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* https://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
package com.thomaskuenneth.sandbox | |
import android.graphics.Bitmap | |
import android.graphics.Canvas | |
import android.os.Bundle | |
import androidx.activity.ComponentActivity | |
import androidx.activity.compose.setContent | |
import androidx.compose.foundation.Image | |
import androidx.compose.foundation.layout.* | |
import androidx.compose.material.MaterialTheme |
class HomeActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
// override the default transitions because we create the circular reveal manually | |
overridePendingTransition(R.anim.anim_no_translate, R.anim.anim_no_translate) | |
setContentView(R.layout.activity_home) |
motionLayout.setTransitionListener(object:MotionLayout.TransitionListener{ | |
override fun onTransitionTrigger(p0: MotionLayout?, p1: Int, p2: Boolean, p3: Float) { | |
} | |
override fun onTransitionStarted(p0: MotionLayout?, p1: Int, p2: Int) { | |
} | |
override fun onTransitionChange(p0: MotionLayout?, p1: Int, p2: Int, progress: Float) { | |
} |
/* | |
* Copyright © 2019 Stelian Morariu. All rights reserved. | |
*/ | |
package com.stelianmorariu.antrics | |
import androidx.appcompat.app.AppCompatActivity | |
import android.os.Bundle | |
class TestActivity : AppCompatActivity() { |
#!/usr/bin/env bash | |
set -ex | |
# -------------------------------------------------------------- | |
# | |
# ANDROID_NDK_VERSION and ANDROID_NDK_HOME are specified in | |
# -preflight but can also be updated directly in the script | |
# | |
# ------------------------------------------------------------- |