تالار گفتمان nCIS.ir

نسخه‌ی کامل: مشکل در تولید خروجی apk
شما در حال مشاهده نسخه آرشیو هستید. برای مشاهده نسخه کامل کلیک کنید.
سلام.من یه برنامه ای نوشتم که کار میکنه ولی وقتی میخوام ازش خروجی apk بگیرم این ایراد رو میده:
این هم قسمت buil.gradel هستش:
ممنون از راهنمایی تون
apply plugin: 'com.android.application'

repositories
      {
          maven
                  {
                      url "https://jitpack.io"
                  }
      }



android {
  compileSdkVersion 25
  buildToolsVersion "26.0.0"
  defaultConfig {
      applicationId "re.bashirteam.com.awesome"
      minSdkVersion 15
      targetSdkVersion 25
      versionCode 1
      versionName "1.0"

      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  }
  buildTypes {
      release {
          minifyEnabled false
          proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
      }



  }
}

dependencies {
  compile fileTree(dir: 'libs', include: ['*.jar'])
  androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
      exclude group: 'com.android.support', module: 'support-annotations'
  })

  compile('com.github.ozodrukh:CircularReveal:1.1.1@aar')
          {
              transitive = true;
          }
  compile 'com.android.support:appcompat-v7:25.3.1'
  compile 'com.android.support.constraint:constraint-layout:1.0.0-alpha7'
  compile 'com.github.ViksaaSkool:AwesomeSplash:v1.0.0'
  compile 'com.github.yalantis:Side-Menu.Android:1.0.1'
  compile 'com.android.support:support-v4:25.3.1'
  compile 'github.hellocsl:CursorWheelLayout:1.1.0'
  compile 'de.clemenskeppler:MaterialSearchView:1.0.0'
  compile 'org.cryse.widget:persistentsearchview:1.0.4@aar'

  compile 'com.android.support:recyclerview-v7:23.0.1'
  compile 'com.android.support:cardview-v7:23.0.1'

  testCompile 'junit:junit:4.12'
}