Skip to content

Commit

Permalink
Release/1.0.2 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophercong authored Oct 21, 2023
1 parent 34faa96 commit 6126ff1
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 7 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 = 0
private val versionPatch = 2

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.0";
private static final String VERSION = "1.0.2";

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.0"
#define VERSION @"1.0.2"
#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
4 changes: 1 addition & 3 deletions addons/applovin_max/AppLovinMAX.gd
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@
##

## AppLovin MAX Godot Plugin API
@tool
class_name AppLovinMAX
extends EditorPlugin

## Returns the plugin version
static var version: String = "1.0.0"
static var version: String = "1.0.2"
## 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="AppLovinMAX"
description="AppLovin MAX Godot Plugin for Android and iOS."
author="AppLovin"
version="1.0.1"
version="1.0.2"
script="AppLovinMAX.gd"
Binary file not shown.
Binary file not shown.

0 comments on commit 6126ff1

Please sign in to comment.