我尝试使用以下Dockerrun.aws.json的流畅日志驱动程序,
    {
      "AWSEBDockerrunVersion": 2,
      "containerDefinitions": [
        {
          "name": "apache",
          "image": "php:5.6-apache",
          "essential": true,
          "memory": 128,
          "portMappings": [
            {
              "hostPort": 80,
              "containerPort": 80
            }
          ],
          "logConfiguration": {
            "logDriver": "fluentd",
            "options": {
              "fluentd-address": "127.0.0.1:24224"
            }
          }
        }
      ]
    }
但发生以下错误.
ERROR: Encountered error starting new ECS task: {cancel the command.
    "failures": [
        {
            "reason": "ATTRIBUTE",
            "arn": "arn:aws:ecs:ap-northeast-1:000000000000:container-instance/00000000-0000-0000-0000-000000000000"
        }
    ],
    "tasks": []
}
ERROR: Failed to start ECS task after retrying 2 times.
ERROR: [Instance: i-00000000] Command failed on instance. Return code: 1 …我正在尝试通过以下步骤为 iOS 集成 AppLovin,但发生错误您知道如何解决此问题吗?
将初始化片段添加到 AppDelegate.m。
#import <AppLovinSDK/AppLovinSDK.h>
// ...
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.
    [ALSdk initializeSdk];
    return YES;
}
添加片段以显示广告到 ViewController.m。
#import <AppLovinSDK/AppLovinSDK.h>
// ...
- (void)viewDidLoad {
    [super viewDidLoad];
    if([ALInterstitialAd isReadyForDisplay]){
        [ALInterstitialAd show];
    }
    else{
        NSLog(@"Failed");
    }
}
运行应用程序,出现以下堆栈跟踪错误:
2017-01-03 11:09:58.437 AppLovinSample[80329:1731987] -[NSTaggedPointerString al_containsSubstring:]: unrecognized selector …