Skip to content
This repository was archived by the owner on Jul 27, 2019. It is now read-only.

Commit ef6c8eb

Browse files
committed
Implemented IAviaryClientCredentials interface.
1 parent af02224 commit ef6c8eb

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

image-editor-ui/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
android:name="com.adobe.creativesdk.aviary.internal.cds.CdsProvider"
2525
android:authorities="${applicationId}.CdsProvider"
2626
android:exported="false" />
27-
27+
2828
</application>
2929

3030
</manifest>

image-editor-ui/app/src/main/java/com/adobe/imageeditorui/MainApplication.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
import android.app.Application;
44

5+
import com.adobe.creativesdk.aviary.IAviaryClientCredentials;
56
import com.adobe.creativesdk.foundation.AdobeCSDKFoundation;
6-
import com.adobe.creativesdk.foundation.auth.IAdobeAuthClientCredentials;
77

88
/**
99
* Created by ash on 3/11/16.
1010
*/
11-
public class MainApplication extends Application implements IAdobeAuthClientCredentials {
11+
public class MainApplication extends Application implements IAviaryClientCredentials {
1212

1313
/* Be sure to fill in the two strings below. */
1414
private static final String CREATIVE_SDK_CLIENT_ID = Keys.CSDK_CLIENT_ID;
@@ -29,4 +29,9 @@ public String getClientID() {
2929
public String getClientSecret() {
3030
return CREATIVE_SDK_CLIENT_SECRET;
3131
}
32+
33+
@Override
34+
public String getBillingKey() {
35+
return ""; // Leave this blank
36+
}
3237
}

0 commit comments

Comments
 (0)