This file contains hidden or 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
| {"lastUpload":"2021-08-03T11:14:46.202Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
| import CryptoJS = require("crypto-js"); | |
| const defaultOption = { | |
| mode: CryptoJS.mode.ECB, | |
| padding: CryptoJS.pad.NoPadding, | |
| }; | |
| const arrayToHexString = (array: number[]): string => { | |
| let s = ''; | |
| array.forEach((byte) => { |
This file contains hidden or 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
| const aesjs = require('aes-js'); | |
| const utf8ToBytes = aString => { | |
| return aesjs.utils.utf8.toBytes(aString); | |
| } | |
| const bytesToUtf8 = aBytes => { | |
| return aesjs.utils.utf8.fromBytes(aBytes); | |
| } |
This file contains hidden or 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
| language: groovy | |
| notifications: | |
| # ๅ ณ้ญ้ฎไปถ้็ฅ | |
| email: false | |
| # set sudo required for non-container vm with more mem even though we don't need sudo | |
| # https://docs.travis-ci.com/user/reference/overview/ | |
| sudo: required | |
| dist: trusty |
This file contains hidden or 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
| # ๆๅฎๅค้จๆจก็ณๅญๅ ธ | |
| # -obfuscationdictionary ./dictionary-pro.txt | |
| # ๆๅฎ class ๆจก็ณๅญๅ ธ | |
| # -classobfuscationdictionary ./dictionary-pro.txt | |
| # ๆๅฎ package ๆจก็ณๅญๅ ธ | |
| # -packageobfuscationdictionary ./dictionary-pro.txt | |
| ############################################# | |
| # | |
| # ๅฏนไบไธไบๅบๆฌๆไปค็ๆทปๅ |
This file contains hidden or 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
| // publish to bintray | |
| // | |
| // classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.3' | |
| // classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.7.5' | |
| // classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' | |
| // | |
| // gradle clean build bintrayUpload | |
| group = POM_GROUP | |
| version = POM_VERSION_NAME |
This file contains hidden or 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
| { | |
| "emojis": [ | |
| {"emoji": "๐ฉโ๐ฉโ๐งโ๐ง", "name": "family_mothers_two_girls", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "๐ฉโ๐ฉโ๐งโ๐ฆ", "name": "family_mothers_children", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "๐ฉโ๐ฉโ๐ฆโ๐ฆ", "name": "family_mothers_two_boys", "shortname": "", "unicode": "", "html": "👩‍👩‍👦‍👦", "category": "p", "order": ""}, | |
| {"emoji": "๐จโ๐ฉโ๐งโ๐ง", "name": "family_two_girls", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👧", "category": "p", "order": ""}, | |
| {"emoji": "๐จโ๐ฉโ๐งโ๐ฆ", "name": "family_children", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👦", "category": "p", "order": ""}, | |
| {"emoji": "๐จโ๐ฉโ๐ฆโ๐ฆ", "name": "family_two_boys", "shortname": "", "unicode": "", "html": "👨&zw |