This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gradle basics | |
-Aplicar pluggin java | |
apply pluggin: 'java' | |
-Aplicar pluggin application | |
apply pluggin: 'application' | |
-Compilar todas las tareas | |
gradle -q build | |
-Ver todas las tareas | |
gradle tasks | |
-Integrar gradle con Intellij idea |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Maven Basics | |
-Ver version de Maven | |
mvn -v | |
-Crear proyecto con Maven | |
mvn archetype:gemerate -DgroupId=com.mycompany.my-app -DartifactId=my-app | |
-Crear proyecto con Maven con configs. por defecto | |
mvn archetype:gemerate -DgroupId=com.mycompany.my-app -DartifactId=my-app -DinterativeMode=false | |
-Crear proyecto con Maven con configs. para webapps | |
mvn archetype:gemerate -DgroupId=com.mycompany.my-app -DartifactId=my-app -DinterativeMode=false -DarchetypeId=maven-archetype-webapp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.annotation.SuppressLint; | |
import android.content.Context; | |
import android.graphics.Bitmap; | |
import android.util.LruCache; | |
import com.android.volley.Request; | |
import com.android.volley.RequestQueue; | |
import com.android.volley.toolbox.ImageLoader; | |
import com.android.volley.toolbox.Volley; |
NewerOlder