v脸 | 眼距 | 瘦鼻 | 3D贴纸 |
| | | |
tebeautykit
Android/tebeautykit
文件夹拷贝到自己的工程中,和 app 同级目录。settings.gradle
文件,添加下面的代码:include ':tebeautykit'
iOS/TEBeautyKit
文件夹拷贝到自己的工程中,和 Podfile
同级目录。
podfile
文件,添加下面的代码:pod 'TEBeautyKit',:podspec => './TEBeautyKit/TEBeautyKit.podspec'
pod install
命令。LicenseUrl
和 LicenseKey
,请参见 License 指引。美颜套餐编号
、LicenseUrl
和 LicenseKey
:TEBeautySettings.getInstance().initBeautySettings(context,S1_07, // 将S1_07替换为您购买的美颜套餐编号"LicenseUrl
", // 请替换LicenseUrl
"LicenseKey
"); // 请替换LicenseKey
AppDelegate
的 didFinishLaunchingWithOptions
方法中设置相关内容。//// 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) // 将S1_07替换为您购买的美颜套餐编号}return true}
本页内容是否解决了您的问题?