Back to project page PlayTunes.
The source code is released under:
Copyright (c) 2014, Impeccable Labs, LLC. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions ar...
If you think the Android project PlayTunes listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ideabag.playtunes.util; //from www . j av a 2 s .co m import com.google.android.gms.ads.AdRequest; import com.ideabag.playtunes.R; import android.content.Context; public class AdmobUtil { public static void AddTestDevices( Context mContext, AdRequest.Builder requestBuilder ) { String[] device_ids = mContext.getResources().getStringArray( R.array.admob_test_device_ids ); for ( int i = 0, count = device_ids.length; i < count; i++ ) { requestBuilder.addTestDevice( device_ids[ i ] ); } } }