Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts

Thursday, March 24, 2016

BlueStacks App Player 0.9.6.4092 SuperUser BSEasy

BlueStacks AppPlayer 0.9.6.4092 It allows you to program your own Android games and full screen PC and tablet run. You can also instantly without the need to reboot, you can switch between Android and Windows. You can also Android app icons on your desktop. By this software, you can program your Android phone or tablet without Android, try and use the same way on your computer.
Having Bluestacks can see what's already on your phone or friends on your PC and open it later, which means that you can program is just like the view of the desktop Did you interact with it on your phone and take advantage of its resources. In addition, the synchronization program that allows you to back up data and applications stored on the phone you can backup onto your computer.

Saturday, February 20, 2016

Steps To Use Rooted Bluestacks and Bs Tweaker on PC

• First All of You Download Rooted Bluestacks app player from following link.
• After Downloading Bluestacks Download BS Tweaker
• Now Install Both apps.
• click to change GUID,Google Advertising ID & Android ID.

Bluestack Tweaker




Latest Update About Bluestacks and Bluestacks Tweaker updated on December 2015.  Run full Android phone features on BlueStacks App Player. Download any application and games from Playstore. Download Free Recharge apps. Use BS Tweaker and make unlimited different-different new device id. Earn Unlimited Free Recharge. Enjoy All android application on computer. Bluestacks & BSTweaker For computer/laptop Android.

BlueStacks App Player Pro v2.0.2.5627 Offline MOD

BlueStacks App Player
BlueStacks HD App Player Pro is a plateform that allows you to run applications, including games written for OS Android – on desktops, laptops and tablets and also this package contains all files to install it offline. This is a special program that uses a technology called LayerCake, which provides the correct environment for running applications for ARM-Android on a computer running Windows. Get Root (right super – user).
After you install BlueStacks on your Windows PC, you can download directly from the program needed Android-app, without having to use the Android-based smartphone. BlueStacks looks pretty neat and fits naturally into the interface Windows.
Features List
  • Run Android applications in full-screen and not only.
  • Through the cloud download your application from the phone to Windows.
  • In 16 player preinstalled applications and you can play them if there is no number.

Friday, February 19, 2016

Cara Pasang Iklan AdMob di Aplikasi/APK android







Buka AndroidManifest.xml


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- admob required permissions integration -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<!-- End of admob permissions integration -->
  
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>


Cara memasang iklan mobilecore di aplikasi/APK android

langkah pertama start eclipse / android studio kemudian  buat project baru


buka AndroidManifest.xml edit dan masukan script code dibawah ini



<!--will make sure the screen doesn’t turn off while the user is watching a video ad (only). -->

<uses-permission android:name="android.permission.INTERNET" />

<!--mobileCore SDK will fetch ads only if network connection is available. -->

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<!--will make sure the screen doesn’t turn off while the user is watching a video ad (only). -->

<uses-permission android:name="android.permission.WAKE_LOCK" />

<service
              android:name="com.ironsource.mobilcore.MobileCoreReport"
              android:enabled="true"
              android:exported="false" android:process=":mcServiceProcess">
</service>
<receiver
              android:name="com.ironsource.mobilcore.InstallationTracker"
              android:enabled="true"
              android:process=":installationTracker">
</receiver>
<activity
           android:name="com.ironsource.mobilcore.InterstitialVideoActivity"
           android:configChanges="keyboardHidden|orientation|screenSize"
           android:keepScreenOn="true"/>



kemudian buka MyActivity.java file ... edit dan masukan script code dibawah ini


public  class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
MobileCore.init(this,"ISI DENGAN HASHCODE ANDA", LOG_TYPE.DEBUG,AD_UNITS.STICKEEZ,AD_UNITS.INTERSTITIAL,AD_UNITS.DIRECT_TO_MARKET,AD_UNITS.NATIVE_ADS);
if (MobileCore.isStickeeReady()) {
MobileCore.showStickee(MainActivity.this);
}
else if (MobileCore.isStickeeShowing() || MobileCore.isStickeeShowingOffers()) {
Toast.makeText(MainActivity.this, "Stickeez is currently showing.", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(MainActivity.this, "Stickeez isn't ready yet", Toast.LENGTH_SHORT).show();
}


});
}




jalankan aplikasi...

tara iklan anda sudah keluar


dan yang terakhir jangan sampai lupa untuk memasukan SDK ke dalam folder Libs