Revision 743b41d5
Added by Leszek Koltunski over 1 year ago
build.gradle | ||
---|---|---|
9 | 9 |
keyAlias = 'distorted' |
10 | 10 |
} |
11 | 11 |
} |
12 |
compileSdkVersion 32
|
|
12 |
compileSdkVersion 33
|
|
13 | 13 |
|
14 | 14 |
defaultConfig { |
15 | 15 |
applicationId "org.distorted.magic" |
16 | 16 |
minSdkVersion 21 |
17 |
targetSdkVersion 32
|
|
18 |
versionCode 72
|
|
19 |
versionName "1.12.5"
|
|
17 |
targetSdkVersion 33
|
|
18 |
versionCode 74
|
|
19 |
versionName "1.12.6_internal"
|
|
20 | 20 |
} |
21 | 21 |
|
22 | 22 |
buildTypes { |
... | ... | |
49 | 49 |
implementation ('com.google.firebase:firebase-messaging') |
50 | 50 |
implementation ('com.google.firebase:firebase-inappmessaging-display') |
51 | 51 |
implementation ('com.google.android.play:core:1.10.3') |
52 |
implementation ('androidx.appcompat:appcompat:1.5.1') |
|
53 |
implementation ('androidx.work:work-runtime:2.7.1') |
|
54 |
implementation ('com.google.android.material:material:1.7.0') |
|
52 |
implementation ('androidx.appcompat:appcompat:1.6.1') |
|
53 |
implementation ('androidx.work:work-runtime:2.8.0') |
|
54 |
implementation ('com.google.android.material:material:1.8.0') |
|
55 |
implementation "com.android.billingclient:billing:5.1.0" |
|
55 | 56 |
implementation project(path: ':distorted-puzzle-jsons') |
56 | 57 |
implementation project(path: ':distorted-puzzle-dmesh') |
57 | 58 |
} |
src/main/java/org/distorted/main/RubikActivity.java | ||
---|---|---|
65 | 65 |
{ |
66 | 66 |
public static final boolean SHOW_DOWNLOADED_DEBUG = false; |
67 | 67 |
public static final boolean SHOW_IAP_DEBUG = true; |
68 |
public static final boolean USE_IAP = false;
|
|
68 |
public static final boolean USE_IAP = true;
|
|
69 | 69 |
|
70 | 70 |
public static final float PADDING = 0.01f; |
71 | 71 |
public static final float SMALL_MARGIN = 0.004f; |
Also available in: Unified diff
Up target SDK back to 33.