Basic Beauty
and Advanced Beauty
. If you are not satisfied with the results of Basic Beauty, you can choose to integrate Advanced Beauty to meet your more advanced beauty needs.Chin slimming | Eye distance | Nose slimming | 3D animated effects |
| | | |
tebeautykit
Android/tebeautykit
folder to your project, at the same level as the app folder.settings.gradle
file and add the following code:include ':tebeautykit'
iOS/TEBeautyKit
folder to your project, at the same level as the Podfile
folder.
pod 'TEBeautyKit',:podspec => './TEBeautyKit/TEBeautyKit.podspec'
pod install
in the terminal to install the tebeautykit
dependency.LicenseUrl
and LicenseKey
. Please refer to the License Guide for more information.Beauty Package ID
, LicenseUrl
, and LicenseKey
you have obtained:TEBeautySettings.getInstance().initBeautySettings(context,S1_07, // Replace S1_07 with the beauty package number you purchased."LicenseUrl
", // Replace with your LicenseUrl"LicenseKey
"); // Replace with youLicenseKey
didFinishLaunchingWithOptions
method of AppDelegate
.//// AppDelegate.swift//import TEBeautyKitfunc application(_ application: UIApplication,didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {TEBeautyKit.setTELicense("LicenseURL
", key: "LicenseKEY
") { code, message inTEUIConfig.shareInstance().setPanelLevel(.S1_07) // Replace S1_07 with the beauty package number you purchased.}return true}
Was this page helpful?