This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: 'com.android.library' | |
... | |
apply plugin: 'maven-publish' | |
apply plugin: 'signing' | |
group = "com.linecorp.linesdk" | |
version = "5.6.1" | |
android { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
... | |
dependencies { | |
... | |
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0" | |
} | |
} | |
apply plugin: 'io.codearte.nexus-staging' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; | |
} | |
... | |
... | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |
); |