-
Notifications
You must be signed in to change notification settings - Fork 38
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
KivMob android.ndk version #119
Comments
I've understood the rest, if you could just clarify the above because even after trying everything no banner ad is showing whereas there are no errors showing in the logcat either. |
try in buildozer : android.permissions = INTERNET, ACCESS_NETWORK_STATE |
I can replace the APPLICATION_ID with the one I received after making my Admob account, right? |
this is google admob test id so it only shows test ads, to start monetizing admob you must add your app to google admob and create ad unit, after that until implementation instructions and copy id of application after that replace the APPLICATION_ID with the application id . |
Buildozer.spec file:
I've been trying to include ads into my app but haven't been successful yet. Everything in the logcat seems normal with no errors and I have provided the code and spec file above. Kindly take a look and tell me what am I doing wrong. Also, since I'm directly calling from the kivmob.py file I haven't included it in the buildozer.spec requirements list. Let me know if that can be a problem although no errors/warnings were thrown regarding that either. |
I'm a little out of time to test the application, but a few possible solutions: compile the app with test ads just to see if the ads will show, i believe if you compile the app with your admob banner id without having signed the app it will not show the ads About kivmob being included directly is no problem as long as you are using the most current version of the file, check that too. If that doesn't work, compile it with the code: from kivmob import KivMob, TestIds from kivy.app import App class BannerTest(App):
if name == "main": to see if the problem is in your implementation code or buildozer.speec |
All right. I'll try that. But can you explain further
I thought I already signed my app and everything when I made my account there and also received a mail saying "my account is now approved, that the ad serving is enabled and I'm all set and ready to go". Kindly let me know if there's anything else left to be done, and how. |
Hello, when I talk about signing the app, it's with jarsigner |
cry a .jks key with: keep this key because you will always compile application with this key run the commands: P4A_RELEASE_KEYSTORE="****.jks" compile your app Sign your app with : jarsigner -verbose -sigalg SHA256withRSA -digestalg SHA-256 -keystore ****.jks your.abb yourkeyalias Since you are using colab use ! before commands |
Right. Understood. Thank you very much. |
I'm trying to build my Kivy Android app apk via Colab and wanted to include KivMob in my app. I wanted to know the following:
Is
android.gradle_dependencies = 'com.google.firebase:firebase-ads:10.2.0'
version all right or do I need to change it according to #118Also, android.ndk version
19b
is mentioned in regard to KivMob ad display to be added in builder.spec file, but Colab supports a minimum version of23b
. Is it going to be a problem or KivMob is going to work fine even with the latter?The text was updated successfully, but these errors were encountered: