
V-Face | Eye Distance | Slim Nose | 3D Stickers |
![]() | ![]() | ![]() | ![]() |
TebeautykitAndroid/tebeautykit folder into your project at the same directory level as the app.
settings.gradle file and add the following code:include ':tebeautykit'
iOS/TEBeautyKit folder into your project at the same directory level as the Podfile.
podfile and add the following code:pod 'TEBeautyKit',:podspec => './TEBeautyKit/TEBeautyKit.podspec'
pod install command in the terminal.LicenseUrl and LicenseKey. Please refer to license guide.beauty package number, LicenseUrl, and LicenseKey you applied for:TEBeautySettings.getInstance().initBeautySettings(context,S1_07, // Replace S1_07 with the beauty package number you have purchased"LicenseUrl", // ReplaceLicenseUrl"LicenseKey"); // ReplaceLicenseKey
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 have purchased}return true}
Feedback