I've updated about 17 of mine so far in pairs of free and paid and all 34 all have gone through OK on Google Play this last week. Got about 7 more to go. All using the latest 'patched' gideros aab bundle exporter built against API28. I did fully update Android Studio first. I only really use Applovin and Unity ads plugins now tho on the free versions and nowt on the paid versions pretty much.
Maybe as SinsterSoft said above, it's a plugin thing?
I've updated about 17 of mine so far in pairs of free and paid and all 34 all have gone through OK on Google Play this last week. Got about 7 more to go. All using the latest 'patched' gideros aab bundle exporter built against API28. I did fully update Android Studio first. I only really use Applovin and Unity ads plugins now tho on the free versions and nowt on the paid versions pretty much.
Maybe as SinsterSoft said above, it's a plugin thing?
The reason is: the admob plugin with the 64bit library is hanging
local text=TextField.new(font,"This is a text")local isS,isE=string.find(text:getText()," is ")--Get 'is' word positionlocal isSX,isSY=text:getPointFromTextPosition(isS)--Get 'i' starting pointlocal isEX,isEY=text:getPointFromTextPosition(isE-1)-- Get 's' end point, that is next space's starting point-- Draw a red underline under the 'is' wordlocal underline=Pixel.new(0xFF0000,1,isEX-isSX,3)
underline:setPosition(isSX,2)
stage:addChild(text)
stage:addChild(underline)-- Figure out which char is at the middle of the 'is' word (should be 's' since it is larger')local c,CX,CY=text:getTextPositionFromPoint((isSX+isEX)/2,0)print("'is' mid char is at:"..c.." (location "..CX..","..CY..")")
I found 2 errors: 1. getPointFromTextPosition() wrong with setSample() 2. getPointFromTextPosition() wrong with TextField.new(nil,"rwer")
Comments
I probably don't even need Gideros Studio installed on the crapple since I can export the xcode rubbish from my pc also
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
Likes: antix
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
Maybe as SinsterSoft said above, it's a plugin thing?
Likes: MobAmuse
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
Likes: oleg
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
1. getPointFromTextPosition() wrong with setSample()
2. getPointFromTextPosition() wrong with TextField.new(nil,"rwer")
https://play.google.com/store/apps/developer?id=razorback456
мій блог по гідерос https://simartinfo.blogspot.com
Слава Україні!
Likes: MoKaLux