Tôi có một điểm số THẤT BẠI:
..."Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0."
Mô tả trường hợp:
- Được đính kèm vào codebase của dự án các libs tiếp theo:
APP / build.gradle
//(Required) Writing and executing Unit Tests on the JUnit Platform
testImplementation "org.junit.jupiter:junit-jupiter-api:5.2.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.2.0"
// (Optional) If you need "Parameterized Tests"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.2.0"
// (Optional) If you also have JUnit 4-based tests
testImplementation "junit:junit:4.12"
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:5.2.0"
testImplementation "io.mockk:mockk:1.8.5"
Đã cập nhật gradle-wrapper.properties
phân phốiUrl = https .... gradle- 4.4-all .zip đến 4.7-all
sau khi tất cả gradle đó đã được xây dựng thành công
đã tạo calss thử nghiệm
@TestInstance(TestInstance.Lifecycle.PER_CLASS) class TestClass { @Test internal fun testName() { Assert.assertEquals(2, 1 + 1) } }
đã chạy bản dựng Gradle với đối số dòng lệnh
./gradlew --warning-mode=all
để xem chính xác các tính năng không dùng nữa là gì.
Kết quả là tôi không thể tạo ứng dụng và nhận được thông báo FAILURE:.