Skip to content

Commit 350f17e

Browse files
committed
```groovy
1 parent 3354870 commit 350f17e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

projects/gradle/android/Make-Android-Eclipse-project-ready-for-Android-Studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In short: use `src/main/java`.
2020
1. Create project in Eclipse
2121
2. In `.classpath` change `src` value into `src/main/java`, that is
2222
`<classpathentry kind="src" path="src/main/java"/>`
23-
( Your project now has red **!** by now)
23+
( Your project has red **!** by now)
2424
3. Create folder `main/java` under `src`
2525
4. Move source under `src/main/java`, e.g. move `com` from `src` into `src/main/java`
2626

@@ -30,7 +30,7 @@ In short: use `src/main/java`.
3030

3131
5. Way 1: add `build.gradle`, e.g. with such minimal content:
3232

33-
```gradle
33+
```groovy
3434
buildscript {
3535
repositories {
3636
mavenCentral()
@@ -71,7 +71,7 @@ In short: use `src/main/java`.
7171

7272
Check/correct that your `sourceSets` section is like below:
7373

74-
```gradle
74+
```groovy
7575
sourceSets {
7676
main {
7777
manifest.srcFile 'AndroidManifest.xml'
@@ -84,7 +84,7 @@ In short: use `src/main/java`.
8484
```
8585

8686
**Hint 1**: when you Gradle build file becomes long, define some modules and put them into `gradle` folder,
87-
then inside `build.gradle` use
87+
then inside `build.gradle` use
8888
`apply from: 'gradle/feature-module.gradle'`
8989

9090
**Hint 2**: For Eclipse project with dependencies `build.gradle` will be added in every of them,

0 commit comments

Comments
 (0)