From 86bc2ed7467acfd9c9ae44b27ec68d673d35e097 Mon Sep 17 00:00:00 2001 From: Yumi Date: Sun, 22 May 2022 17:32:02 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0Line=E5=B9=B3=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/gradle.xml | 1 + .../google/GoogleSocialHelperExt.kt | 4 +- Line/.gitignore | 1 + Line/build.gradle | 49 ++++++++++++ Line/consumer-rules.pro | 0 Line/proguard-rules.pro | 21 +++++ .../line/ExampleInstrumentedTest.kt | 24 ++++++ Line/src/main/AndroidManifest.xml | 5 ++ .../socialhelper/line/LineSocialConst.kt | 7 ++ .../socialhelper/line/LineSocialHelperExt.kt | 78 +++++++++++++++++++ Line/src/main/res/values/strings.xml | 4 + .../socialhelper/line/ExampleUnitTest.kt | 17 ++++ PlatformInfo.md | 30 ++++++- README.md | 40 ++++++++-- Sample/build.gradle | 33 +++++--- Sample/src/main/AndroidManifest.xml | 3 +- .../java/io/github/socialhelper/demo/App.kt | 1 + .../github/socialhelper/demo/MainActivity.kt | 46 +++++++++++ Sample/src/main/res/layout/activity_main.xml | 2 +- Sample/src/main/res/values/strings.xml | 2 +- .../devzwy/socialhelper/SocialConfig.kt | 26 ++++++- build.gradle | 2 +- settings.gradle | 1 + 23 files changed, 370 insertions(+), 27 deletions(-) create mode 100644 Line/.gitignore create mode 100644 Line/build.gradle create mode 100644 Line/consumer-rules.pro create mode 100644 Line/proguard-rules.pro create mode 100644 Line/src/androidTest/java/io/github/devzwy/socialhelper/line/ExampleInstrumentedTest.kt create mode 100644 Line/src/main/AndroidManifest.xml create mode 100644 Line/src/main/java/io/github/devzwy/socialhelper/line/LineSocialConst.kt create mode 100644 Line/src/main/java/io/github/devzwy/socialhelper/line/LineSocialHelperExt.kt create mode 100644 Line/src/main/res/values/strings.xml create mode 100644 Line/src/test/java/io/github/devzwy/socialhelper/line/ExampleUnitTest.kt diff --git a/.idea/gradle.xml b/.idea/gradle.xml index f358785..07b0532 100644 --- a/.idea/gradle.xml +++ b/.idea/gradle.xml @@ -12,6 +12,7 @@