Diff
checker
टेक्स्ट
टेक्स्ट
छवियां
दस्तावेज़
Excel
फ़ोल्डर्स
Legal
Enterprise
डेस्कटॉप
मूल्य
साइन इन करें
Diffchecker डेस्कटॉप डाउनलोड करें
टेक्स्ट की तुलना करें
दो टेक्स्ट फ़ाइलों के बीच अंतर ढूंढें
उपकरण
इतिहास
रियल-टाइम एडिटर
अपरिवर्तित संक्षिप्त करें
लाइन रैप बंद
लेआउट
विभाजित
संयुक्त
परिवर्तन हाइलाइट करें
स्मार्ट
शब्द
अक्षर
सिंटैक्स हाइलाइटिंग
सिंटैक्स चुनें
अनदेखा करें
टेक्स्ट बदलें
पहले अंतर पर जाएँ
इनपुट संपादित करें
Diffchecker Desktop
Diffchecker चलाने का सबसे सुरक्षित तरीका। Diffchecker Desktop ऐप पाएं: आपके diffs कभी आपके कंप्यूटर से बाहर नहीं जाते!
Desktop पाएं
SV gradle update: build.gradle
बनाया गया
9 वर्ष पहले
Diff कभी समाप्त नहीं होता
साफ़
निर्यात करें
शेयर करें
समझाएं
5 हटाए गए
लाइनें
कुल
हटाया गया
अक्षर
कुल
हटाया गया
इस सुविधा का उपयोग जारी रखने के लिए, अपग्रेड करें
Diff
checker
Pro
मूल्य देखें
38 लाइनें
सभी को कॉपी करें
8 जोड़े गए
लाइनें
कुल
जोड़ा गया
अक्षर
कुल
जोड़ा गया
इस सुविधा का उपयोग जारी रखने के लिए, अपग्रेड करें
Diff
checker
Pro
मूल्य देखें
43 लाइनें
सभी को कॉपी करें
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: 'gradle-scripts/dependencies.gradle'
apply from: 'gradle-scripts/dependencies.gradle'
buildscript {
buildscript {
ext.kotlin_version = '1.1.0'
ext.kotlin_version = '1.1.0'
repositories {
repositories {
jcenter()
jcenter()
}
}
dependencies {
dependencies {
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
classpath 'com.android.tools.build:gradle:2.2.3'
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
// APT plugin. Used by ButterKnife
classpath 'com.
android
.tools.build:gradle:2.3.3'
classpath 'com.
neenbedankt.gradle.plugins:
android
-apt:1.8'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "io.realm:realm-gradle-plugin:3.0.0"
classpath "io.realm:realm-gradle-plugin:3.0.0"
classpath 'me.tatarka:gradle-retrolambda:3.6.0'
classpath 'me.tatarka:gradle-retrolambda:3.6.0'
classpath 'com.google.gms:google-services:3.1.0'
classpath 'com.google.gms:google-services:3.1.0'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0'
classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3'
// NOTE: Do not place your application dependencies here; they belong
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
// in the individual module build.gradle files
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
}
}
}
}
allprojects {
allprojects {
repositories {
repositories {
jcenter()
jcenter()
maven { url "https://jitpack.io" }
maven { url "https://jitpack.io" }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}
कॉपी
कॉपी हुआ
कॉपी
कॉपी हुआ
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xmaxerrs" << "1000"
}
}
}
}
task clean(type: Delete) {
task clean(type: Delete) {
delete rootProject.buildDir
delete rootProject.buildDir
}
}
सेव किए गए Diffs
ऑरिजनल टेक्स्ट
फ़ाइल खोलें
// Top-level build file where you can add configuration options common to all sub-projects/modules. apply from: 'gradle-scripts/dependencies.gradle' buildscript { ext.kotlin_version = '1.1.0' repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' // APT plugin. Used by ButterKnife classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "io.realm:realm-gradle-plugin:3.0.0" classpath 'me.tatarka:gradle-retrolambda:3.6.0' classpath 'com.google.gms:google-services:3.1.0' classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0' classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() maven { url "https://jitpack.io" } maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } } } task clean(type: Delete) { delete rootProject.buildDir }
परिवर्तित टेक्स्ट
फ़ाइल खोलें
// Top-level build file where you can add configuration options common to all sub-projects/modules. apply from: 'gradle-scripts/dependencies.gradle' buildscript { ext.kotlin_version = '1.1.0' repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.3.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "io.realm:realm-gradle-plugin:3.0.0" classpath 'me.tatarka:gradle-retrolambda:3.6.0' classpath 'com.google.gms:google-services:3.1.0' classpath 'com.vanniktech:gradle-android-junit-jacoco-plugin:0.5.0' classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() maven { url "https://jitpack.io" } maven { url 'https://oss.sonatype.org/content/repositories/snapshots' } } gradle.projectsEvaluated { tasks.withType(JavaCompile) { options.compilerArgs << "-Xmaxerrs" << "1000" } } } task clean(type: Delete) { delete rootProject.buildDir }
अंतर खोजें