-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HZUNITY-16] Default placements #11
base: master
Are you sure you want to change the base?
Conversation
12a8066
to
ee7cab8
Compare
ee7cab8
to
b4e9c4c
Compare
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
<uses-sdk android:minSdkVersion="14" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this changed on the Heyzap side?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, it's actually 15
.
Assets/Scripts/AdManager.cs
Outdated
@@ -18,9 +17,10 @@ public class AdManager : MonoBehaviour { | |||
[SerializeField] | |||
private Toggle offerwallCloseOnFirstClickToggle; | |||
[SerializeField] | |||
private Text offerwallCurrencyIdTextField; | |||
private readonly Text offerwallCurrencyIdTextField; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why this change? Does this not affect the setting of the currency id on the testapp?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure. I could remove it and we would be safer, if that's fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you test it? If so, then we're good. Otherwise I wouldn't change it
this.console.MustNotBeNull(); | ||
void Awake() | ||
{ | ||
UnityEngine.Assertions.Assert.IsNotNull(adTagTextField); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason behind this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The old assertion was deprecated.
|
||
[SerializeField] | ||
private AdManager adManager; | ||
private readonly AdManager adManager; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above: any reason why this was changed?
# Conflicts: # Assets/Plugins/Android/Heyzap/AndroidManifest.xml # Assets/Plugins/Heyzap/HeyzapAds.cs # Assets/Scripts/AdManager.cs # ProjectSettings/GraphicsSettings.asset # ProjectSettings/ProjectSettings.asset
No description provided.