diff options
| author | 2013-03-11 16:07:56 -0700 | |
|---|---|---|
| committer | 2013-03-11 16:07:56 -0700 | |
| commit | 49c6ff0a037065563e2a3e1c9146c5b86eb1d3f0 (patch) | |
| tree | 91ef5c31551df1a0a07afcb043200d03cf2ceb0b | |
| parent | a45bafc2f025d2ef513f3e3dcac162ba6a95d575 (diff) | |
| parent | a9cac9aa4322a2969c9614aa01f63c13e5f0189e (diff) | |
am a9cac9aa: am e1c2a62a: am 1267cfc3: am 616908fe: docs: Fixed import statements for licensing docs. Bug: 8360745
* commit 'a9cac9aa4322a2969c9614aa01f63c13e5f0189e':
docs: Fixed import statements for licensing docs. Bug: 8360745
| -rw-r--r-- | docs/html/google/play/licensing/adding-licensing.jd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/html/google/play/licensing/adding-licensing.jd b/docs/html/google/play/licensing/adding-licensing.jd index f991e147ed8d..3f2460fbd15b 100644 --- a/docs/html/google/play/licensing/adding-licensing.jd +++ b/docs/html/google/play/licensing/adding-licensing.jd @@ -598,15 +598,15 @@ href="#impl-Obfuscator">Obfuscator</a> implementation. </p> <p>First, open the class file of the application's main Activity and import {@code LicenseChecker} and {@code LicenseCheckerCallback} from the LVL package.</p> -<pre> import com.android.vending.licensing.LicenseChecker; - import com.android.vending.licensing.LicenseCheckerCallback;</pre> +<pre> import com.google.android.vending.licensing.LicenseChecker; + import com.google.android.vending.licensing.LicenseCheckerCallback;</pre> <p>If you are using the default {@code Policy} implementation provided with the LVL, ServerManagedPolicy, import it also, together with the AESObfuscator. If you are using a custom {@code Policy} or {@code Obfuscator}, import those instead. </p> -<pre> import com.android.vending.licensing.ServerManagedPolicy; - import com.android.vending.licensing.AESObfuscator;</pre> +<pre> import com.google.android.vending.licensing.ServerManagedPolicy; + import com.google.android.vending.licensing.AESObfuscator;</pre> <h3 id="lc-impl">Implement LicenseCheckerCallback as a private inner class</h3> |