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
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.URL
and KEY
in the initialization code of the relevant business module, and configure the beauty filter resources. For example, on iOS, you can set the relevant content in the 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?