Last Updated on : 2024-11-18 11:33:16download
Mall UI BizBundle provides the iOS container that hosts Tuya’s value-added service App Mall. You can leverage the powerful mall capabilities to monetize the user traffic through your in-app store.
For more information, see App Mall.
Integrate Smart Life App SDK for Android into your project with Android Studio and add the framework of the UI BizBundle to your project.
build.gradle
filedependencies {
api 'com.tuya.smart:tuyasmart-bizbundle-mall:4.2.0-33'
}
# Obfuscates the code of all third-party dependencies in `build.gradle`.
#fastJson
-keep class com.alibaba.fastjson.**{*;}
-dontwarn com.alibaba.fastjson.**
-keep class com.squareup.okhttp.** { *; }
-keep interface com.squareup.okhttp.** { *; }
-dontwarn com.squareup.okhttp.**
-keep class okio.** { *; }
-dontwarn okio.**
-keep class com.tuya.**{*;}
-dontwarn com.tuya.**
Checks whether the location of the current user supports the app mall business.
API description
isSupportMall()
Example
TuyaMallService service = MicroContext.getServiceManager().findServiceByInterface(TuyaMallService.class.getName());
boolean mallEnable = service.isSupportMall()
Returns the URL of the mall homepage if the user’s location supports the app mall business. An asynchronous callback is implemented.
API description
requestMallHome(IGetMallUrlCallback callback)
Parameters
Parameter | Description |
---|---|
IGetMallUrlCallback | The asynchronous callback. |
Example
TuyaMallService service = MicroContext.getServiceManager().findServiceByInterface(TuyaMallService.class.getName());
service.requestMallHome(new IGetMallUrlCallback() {
@Override
public void onSuccess(String url) {
Log.i("mall url = ",url);
}
@Override
public void onError(String code, String error) {
}
});
Returns the URL of a mall order in the user’s location. An asynchronous callback is implemented.
API description
requestMallUserCenter(IGetMallUrlCallback callback)
Parameters
Parameter | Description |
---|---|
IGetMallUrlCallback | The asynchronous callback of the mall order request. |
Example
TuyaMallService service = MicroContext.getServiceManager().findServiceByInterface(TuyaMallService.class.getName());
service.requestMallUserCenter(new IGetMallUrlCallback() {
@Override
public void onSuccess(String url) {
Log.i("mall user center url = ", url);
}
@Override
public void onError(String code, String error) {
}
});
Displays a mall page by means of activities or fragments.
Example
Activity
Intent intent = new Intent(context, WebViewActivity.class);
intent.putExtra("Uri", url);
context.startActivity(intent);
Fragment
WebViewFragment fragment = new WebViewFragment();
Bundle args = new Bundle();
args.putString("Uri", url);
args.putBoolean("enableLeftArea", true);
fragment.setArguments(args);
getSupportFragmentManager().beginTransaction()
.add(R.id.web_content, fragment, WebViewFragment.class.getSimpleName())
.commit();
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback