apply plugin: 'com.android.application' repositories { flatDir { dirs 'libs' } } android { compileSdkVersion 22 buildToolsVersion "26.0.2" defaultConfig { minSdkVersion 9 targetSdkVersion 22 versionCode 5 versionName "1.3" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } lintOptions { abortOnError false } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:22.2.0' //微信 // compile 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+' // compile project(':GameSDK') compile(name: 'GameSDK-release4.3.2', ext: 'aar') }