$10+ eCPM's with TapIt AdPrompts & TapIt SDK Wrapper

TapIt

New Member
Licensed User
Longtime User
Hi guys...Erel gave us his blessing to place a few posts in here. (Thanks Erel!)

We have just released our new ad Unit called AdPrompts.

It is yielding $10+ eCPMS for developers.

You can learn more about this particular ad unit here: tapit.com/adprompts

We have also rolled out FREE mediation, so you can use TapIt to grab ad feeds from multiple providers, and keep the direct relationship with them :)

Lastly, our Basic4Android SDK Wrapper can be found here: Basic4Android Plugin : Support Center

If you have any questions, please contact Tatiana Monras to help you get started.

Skype: tapit.tati

Cheers!
 
Last edited:

alan1968

Active Member
Licensed User
Longtime User
hello
i have a problem with librarie


B4X:
Sub Globals
Dim tap As  TapitAd
Dim test As Button
End Sub

Sub Activity_Create(FirstTime As Boolean)
tap.Initialize("Banner","15413")
test.Initialize("test")
Activity.AddView(test,100dip,100dip,150dip,50dip)
Activity.AddView(tap, 0, Activity.Height-50, Activity.Width, 50)
End Sub
Sub test_click
tap.fireAlertAd("15413")
End Sub

Debug message

B4X:
main_test_click (java line: 254)

android.content.ActivityNotFoundException: Unable to find explicit activity class {tapit.test/com.tapit.adview.AdActivity}; have you declared this activity in your AndroidManifest.xml?
   at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1508)
   at android.app.Instrumentation.execStartActivity(Instrumentation.java:1384)
   at android.app.Activity.startActivityForResult(Activity.java:3190)
   at com.tapit.adview.AdInterstitialBaseView.showInterstitial(AdInterstitialBaseView.java:126)
   at com.dandre.tapitads.TapitAds_V1_3.FullscreenView(TapitAds_V1_3.java:202)
   at tapit.test.main._test_click(main.java:254)
   at java.lang.reflect.Method.invokeNative(Native Method)
   at java.lang.reflect.Method.invoke(Method.java:511)
   at anywheresoftware.b4a.BA.raiseEvent2(BA.java:113)
   at anywheresoftware.b4a.BA.raiseEvent2(BA.java:101)
   at anywheresoftware.b4a.BA.raiseEvent(BA.java:97)
   at anywheresoftware.b4a.objects.ViewWrapper$1.onClick(ViewWrapper.java:49)
   at android.view.View.performClick(View.java:3512)
   at android.view.View$PerformClick.run(View.java:14106)
   at android.os.Handler.handleCallback(Handler.java:605)
   at android.os.Handler.dispatchMessage(Handler.java:92)
   at android.os.Looper.loop(Looper.java:137)
   at android.app.ActivityThread.main(ActivityThread.java:4424)
   at java.lang.reflect.Method.invokeNative(Native Method)
   at java.lang.reflect.Method.invoke(Method.java:511)
   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
   at dalvik.system.NativeStart.main(Native Method)
android.content.ActivityNotFoundException: Unable to find explicit activity class {tapit.test/com.tapit.adview.AdActivity}; have you declared this activity in your AndroidManifest.xml?
 

alan1968

Active Member
Licensed User
Longtime User
it's ok i edited the manifest

B4X:
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: http://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="15" />
<supports-screens android:largeScreens="true" 
    android:normalScreens="true" 
    android:smallScreens="true" 
    android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'End of default text.

'tap it
AddApplicationText(
<activity 
android:name="com.tapit.adview.AdActivity" 
android:configChanges="keyboardHidden|orientation" /> )
 
Last edited:
Top