Skip to content

Commit

Permalink
release/1.0.3 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophercong authored Jan 2, 2024
1 parent 15fa546 commit 738d6d3
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Source/Android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {

private val versionMajor = 1
private val versionMinor = 0
private val versionPatch = 2
private val versionPatch = 3

var libraryVersionName by extra("${versionMajor}.${versionMinor}.${versionPatch}")
var libraryVersionCode by extra((versionMajor * 10000) + (versionMinor * 100) + versionPatch)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public class AppLovinMAXGodotManager
{
private static final String SDK_TAG = "AppLovinSdk";
private static final String TAG = "AppLovinMAXGodotManager";
private static final String VERSION = "1.0.2";
private static final String VERSION = "1.0.3";

private static final String DEFAULT_AD_VIEW_POSITION = "top_left";
private static final Point DEFAULT_AD_VIEW_OFFSET = new Point( 0, 0 );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include "core/object/class_db.h"

#define VERSION @"1.0.2"
#define VERSION @"1.0.3"
#define KEY_WINDOW [UIApplication sharedApplication].keyWindow
#define DEVICE_SPECIFIC_ADVIEW_AD_FORMAT ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) ? MAAdFormat.leader : MAAdFormat.banner
#define IS_VERTICAL_BANNER_POSITION(_POS) ( [@"center_left" isEqual: adViewPosition] || [@"center_right" isEqual: adViewPosition] )
Expand Down
2 changes: 1 addition & 1 deletion addons/applovin_max/AppLovinMAX.gd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class_name AppLovinMAX

## Returns the plugin version
static var version: String = "1.0.2"
static var version: String = "1.0.3"
## This class allows you to provide user or app data that will improve how we target ads.
static var targeting_data: TargetingData = TargetingData.new()
## User segments allow us to serve ads using custom-defined rules based on which segment the user is in. For now, we only support a custom string 32 alphanumeric characters or less as the user segment.
Expand Down
2 changes: 1 addition & 1 deletion addons/applovin_max/plugin.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
name="AppLovinMAXGodotPlugin"
description="AppLovin MAX Godot Plugin for Android and iOS."
author="AppLovin"
version="1.0.2"
version="1.0.3"
script="AppLovinMAXEditorPlugin.gd"
Binary file not shown.
Binary file not shown.

0 comments on commit 738d6d3

Please sign in to comment.