This library makes easy to use the AppStore app's features.
- Detect a store app is installed or not.
- Open app via store app.
- Search apps with publisher via store app.
- Search apps within store app.
- Play Store
- Amazon AppStore
- OneStore
Gradle
dependencies {
implementation 'net.sjava:appstore:1.1.0'
}Maven
<dependency>
<groupId>net.sjava</groupId>
<artifactId>appstore</artifactId>
<version>1.1.0</version>
</dependency>privatevoidinitPlayAppStore() {
Buttonbtn01 = findViewById(R.id.play_button_01);
Buttonbtn02 = findViewById(R.id.play_button_02);
Buttonbtn03 = findViewById(R.id.play_button_03);
Buttonbtn04 = findViewById(R.id.play_button_04);
btn01.setOnClickListener(newView.OnClickListener() {
@OverridepublicvoidonClick(Viewv) {
appStore = PlayAppStore.newInstance();
Toast.makeText(ctx, "isInstalled : " + appStore.isInstalled(ctx), Toast.LENGTH_SHORT).show();
}
});
btn02.setOnClickListener(newView.OnClickListener() {
@OverridepublicvoidonClick(Viewv) {
appStore = PlayAppStore.newInstance();
appStore.openApp(ctx, "com.google.android.gm");
}
});
btn03.setOnClickListener(newView.OnClickListener() {
@OverridepublicvoidonClick(Viewv) {
publisherAppOpener = PlayAppStore.newInstance();
publisherAppOpener.openPublisherApps(ctx, "Google Inc.");
}
});
btn04.setOnClickListener(newView.OnClickListener() {
@OverridepublicvoidonClick(Viewv) {
appStore = PlayAppStore.newInstance();
appStore.searchApp(ctx, "gmail");
}
});
}Copyright 2020 MooChan(Justin) Song
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.