Skip to content

Instantly share code, notes, and snippets.

apply plugin: 'com.android.library'
...
apply plugin: 'maven-publish'
apply plugin: 'signing'
group = "com.linecorp.linesdk"
version = "5.6.1"
android {
buildscript {
...
dependencies {
...
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0"
}
}
apply plugin: 'io.codearte.nexus-staging'
@plateaukao
plateaukao / two_layer_icon.xml
Created February 23, 2021 13:21
An xml to support displaying white in black background, and black in white background.
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" />
<solid android:color="@android:color/transparent"/>
@plateaukao
plateaukao / mac_keyboard.kt
Last active January 20, 2021 14:47
Use Jetpack Compose to draw Mac keyboard
package info.plateaukao.composekeyboard
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.*
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.*
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
function previewUrlInfo(url, isAutoSend = false) {
// handle facebook no preview issue
var oldUrl = new URL(url);
if (oldUrl.hostname.includes('facebook')) {
oldUrl.hostname = 'mobile.facebook.com';
}
...
...
}
window.onload = function() {
const useNodeJS = true; // if you are not using a node server, set this value to false
const defaultLiffId = ""; // change the default LIFF value if you are not using a node server
// DO NOT CHANGE THIS
let myLiffId = "";
// if node is used, fetch the environment variable and pass it to the LIFF method
// otherwise, pass defaultLiffId
if (useNodeJS) {
override fun onWindowFocusChanged(hasFocus: Boolean) {
super.onWindowFocusChanged(hasFocus)
// what the heck! 這件事做在 onResume() 中是沒有用的。害我試了好久
val clipBoardManager = getSystemService(CLIPBOARD_SERVICE) as ClipboardManager
val copiedString = clipBoardManager.primaryClip?.getItemAt(0)?.text?.toString() ?: ""
if (copiedString.isNotEmpty()) {
handleSendText(copiedString)
}
}
@RequiresApi(Build.VERSION_CODES.N)
class LiffShareTileService : TileService() {
...
override fun onClick() {
super.onClick()
// 將 LINE Share App的主畫面叫起
val intent = Intent(this, MainActivity::class.java).apply {
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
if (intent?.action == Intent.ACTION_SEND) {
var url = intent.getStringExtra(Intent.EXTRA_TEXT) ?: ""
handleSendText(url) // Handle text being sent
}
}
@plateaukao
plateaukao / myhomepage.dart
Last active August 16, 2020 03:31
flutter with translation
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
// Replace the title line with the following:
title: Text(AppLocalizations.of(context).hello_world),
),
// The rest of the widget tree.
);