Android AppStore library for Play, Amazon, and OneStore(one of the korean appstore) app store
This library makes easy to use the AppStore app’s features.
Gradle
dependencies {
implementation 'net.sjava:appstore:1.1.0'
}
Maven
<dependency>
<groupId>net.sjava</groupId>
<artifactId>appstore</artifactId>
<version>1.1.0</version>
</dependency>
private void initPlayAppStore() {
Button btn01 = findViewById(R.id.play_button_01);
Button btn02 = findViewById(R.id.play_button_02);
Button btn03 = findViewById(R.id.play_button_03);
Button btn04 = findViewById(R.id.play_button_04);
btn01.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
appStore = PlayAppStore.newInstance();
Toast.makeText(ctx, "isInstalled : " + appStore.isInstalled(ctx), Toast.LENGTH_SHORT).show();
}
});
btn02.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
appStore = PlayAppStore.newInstance();
appStore.openApp(ctx, "com.google.android.gm");
}
});
btn03.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
publisherAppOpener = PlayAppStore.newInstance();
publisherAppOpener.openPublisherApps(ctx, "Google Inc.");
}
});
btn04.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
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.