File tree Expand file tree Collapse file tree 8 files changed +65
-3
lines changed
Assets/GoogleMobileAds/Api
aidl/com/android/vending/billing Expand file tree Collapse file tree 8 files changed +65
-3
lines changed Original file line number Diff line number Diff line change 11Google Mobile Ads Unity Plugin Change Log
22
3+ *************
4+ Version 2.3.1
5+ *************
6+ - Move IInAppBillingService into its own JAR
7+
38*************
49Version 2.3.0
510*************
6- - Add support for In-App Purchase house ads on Android.
11+ - Add support for In-App Purchase house ads on Android
712
813*************
914Version 2.2.1
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ namespace GoogleMobileAds.Api
66{
77 public class AdRequest
88 {
9- public const string Version = "2.3.0 " ;
9+ public const string Version = "2.3.1 " ;
1010 public const string TestDeviceSimulator = "SIMULATOR" ;
1111
1212 public class Builder
Original file line number Diff line number Diff line change 1+ /build
Original file line number Diff line number Diff line change 1+ apply plugin : ' com.android.library'
2+
3+ android {
4+ compileSdkVersion 22
5+ buildToolsVersion " 22.0.1"
6+
7+ defaultConfig {
8+ minSdkVersion 9
9+ targetSdkVersion 22
10+ versionCode 1
11+ versionName " 1.0"
12+ }
13+ buildTypes {
14+ release {
15+ minifyEnabled false
16+ proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
17+ }
18+ }
19+ }
20+
21+ dependencies {
22+ compile fileTree(dir : ' libs' , include : [' *.jar' ])
23+ compile ' com.android.support:appcompat-v7:22.1.1'
24+ }
25+
26+ task clearJar (type : Delete ) {
27+ delete ' build/libs/billingaidl.jar'
28+ }
29+
30+ task makeJar (type : Copy ) {
31+ from(' build/intermediates/bundles/release/' )
32+ into(' build/libs/' )
33+ include(' classes.jar' )
34+ rename (' classes.jar' , ' in-app-billing-service-aidl.jar' )
35+ }
36+
37+ makeJar. dependsOn(clearJar, build)
Original file line number Diff line number Diff line change 1+ # Add project specific ProGuard rules here.
2+ # By default, the flags in this file are appended to flags specified
3+ # in /usr/local/google/home/pavlotsky/Android/Sdk/tools/proguard/proguard-android.txt
4+ # You can edit the include path and order by changing the proguardFiles
5+ # directive in build.gradle.
6+ #
7+ # For more details, see
8+ # http://developer.android.com/guide/developing/tools/proguard.html
9+
10+ # Add any project specific keep options here:
11+
12+ # If your project uses WebView with JS, uncomment the following
13+ # and specify the fully qualified class name to the JavaScript interface
14+ # class:
15+ #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+ # public *;
17+ #}
Original file line number Diff line number Diff line change 1+ <manifest package =" com.google.unity.billingaidl" >
2+ </manifest >
File renamed without changes.
Original file line number Diff line number Diff line change 1- include ' :app'
1+ include ' :app' , ' :billingaidl '
You can’t perform that action at this time.
0 commit comments