Search found 72 matches

by bio1712
Sat Jan 09, 2016 12:24 pm
Forum: LÖVE-Android
Topic: ant debug build error on Mac OS 10.7
Replies: 4
Views: 46166

Re: ant debug build error on Mac OS 10.7

Try to run "ant clean", sometimes it solves the problem.
by bio1712
Sun Jan 03, 2016 10:37 pm
Forum: LÖVE-Android
Topic: Admob Banner and Interstitial Support
Replies: 16
Views: 91739

Re: Admob Banner Support

This is awesome! Thank you!
by bio1712
Mon Nov 09, 2015 5:50 pm
Forum: LÖVE-Android
Topic: Admob Interstitial ad - LÖVE-Android
Replies: 4
Views: 49120

Re: Admob Interstitial ad - LÖVE-Android

master both wrote:Thanks for this great contribution!
This was one of the most asked features for the android port, it's a great step in the port's development.
I will try this as soon as possible and see if I can find some bugs. Also you should add this to the wiki.
Thank you!
by bio1712
Mon Nov 09, 2015 2:15 pm
Forum: LÖVE-Android
Topic: Admob Interstitial ad - LÖVE-Android
Replies: 4
Views: 49120

Admob Interstitial ad - LÖVE-Android

Hello. Lots of people asked for Ads in LÖVE-Android, but we only were able to display banner ads. ( https://bitbucket.org/MartinFelis/love-android-sdl2/wiki/AdMob_Instructions ) In these days I worked on interstitial ads and I found a way to show them using LÖVE!. Probably this is not the best way t...
by bio1712
Thu Oct 08, 2015 4:00 pm
Forum: LÖVE-Android
Topic: Displaying admob banner at the bottom of the screen
Replies: 2
Views: 42186

Re: Displaying admob banner at the bottom of the screen

I got It!

I had to change mLayout to RelativeLayout from AbsoluteLayout, then I had to change the gravity of mLayout using

Code: Select all

((RelativeLayout) mLayout).setGravity(Gravity.BOTTOM)
by bio1712
Mon Oct 05, 2015 4:51 pm
Forum: LÖVE-Android
Topic: Displaying admob banner at the bottom of the screen
Replies: 2
Views: 42186

Displaying admob banner at the bottom of the screen

Hi. I want to display an admob banner at the bottom of the screen. Here is the code in GameActivity.java. My banner displays at the top of the screen, instead of displaying at the bottom. My game is in portrait mode. adView = new AdView(mSingleton); adView.setAdSize(AdSize.SMART_BANNER); adView.setA...
by bio1712
Thu Aug 27, 2015 5:17 am
Forum: General
Topic: Returning an angle
Replies: 4
Views: 2423

Re: Returning an angle

You can use this:

print(math.atan2(A,B)) --radians
by bio1712
Sun Aug 23, 2015 4:54 pm
Forum: Support and Development
Topic: String into image
Replies: 3
Views: 1310

Re: String into image

It works!!

Thanks Slime.

(You made a small mistake: It's love.image.newImageData, not love.graphics.newImageData)
by bio1712
Sun Aug 23, 2015 1:37 pm
Forum: Support and Development
Topic: String into image
Replies: 3
Views: 1310

String into image

How can I convert the string created using ImageData:getString() back to imageData?

thanks.
by bio1712
Wed Aug 19, 2015 5:21 pm
Forum: Support and Development
Topic: Upload image with LuaSocket
Replies: 4
Views: 2622

Re: Upload image with LuaSocket

Ok, thanks for your time.