اذهب إلى المحتوى
  • 0

حل المشكلة دي في Android Studio و هي only buildscript {} and other plugins {} script blocks are allowed before plugins {} blocks, no other statements are allowed

السؤال

نشر (معدل)

عاوز اعرف حل المشكلة دي في Android Studio

Could not compile build file 'C:\Users\ENG Mohamed\AndroidStudioProjects\salahoptics\app\build.gradle'.
> startup failed:
  build file 'C:\Users\ENG Mohamed\AndroidStudioProjects\salahoptics\app\build.gradle': 14: only buildscript {} and other plugins {} script blocks are allowed before plugins {} blocks, no other statements are allowed
 

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.0"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}



allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

تم التعديل في بواسطة Wael Aljamal
توضيح السؤال

Recommended Posts

  • 1
نشر
  بتاريخ On 26‏/1‏/2022 at 16:29 قال Momo Rmadan:
أظهر المزيد  

حاول إضافة plugins تحوي على اسم الحزمة الخاصة بتطبيقك مع إصداره ثم جرب

  • أضفت مثال لشيفرة ملفك
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.0"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

plugins {
   id "com.comp.appName" version "8.4.1"
}


allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

  • 0
نشر

لديك مشكلة ما في ملف build.gradle تأكد من بنية الملف والشيفرة البرمجية ضمنه بأن تكون بنفس الهرمية التالية:

buildScript {
    // ...
}

plugins {
    // ...
}

repositories {
    // ...
}

من الممكن ظهور رسالة الخطأ في حال تم تغيير هذا الترتيب، أو إضافة شيفرات برمجية خارج هذه الأجزاء بشكل مباشر ضمن الملف.

ولكن لا يمكن توقّع حل المشكلة دون إرفاقك للشيفرة البرمجية الموجودة ضمن الملف.

  • 0
نشر
  بتاريخ On 26‏/1‏/2022 at 21:01 قال Wael Aljamal:

حاول إضافة plugins تحوي على اسم الحزمة الخاصة بتطبيقك مع إصداره ثم جرب

  • أضفت مثال لشيفرة ملفك
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.2.0"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

plugins {
   id "com.comp.appName" version "8.4.1"
}


allprojects {
    repositories {
        google()
        mavenCentral()
        jcenter() // Warning: this repository is going to shut down soon
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

 

أظهر المزيد  

تمام هجرب كدا وممكن اكلم حضرتك خاص

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...