-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
/build | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/caches | ||
/.idea/libraries | ||
/.idea/modules.xml | ||
/.idea/workspace.xml | ||
/.idea/navEditor.xml | ||
/.idea/assetWizardSettings.xml | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild | ||
.cxx | ||
local.properties |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# GNotes | ||
A simple Android application coded in java and minSdk 21 <br> | ||
The application calculates the average of the notes entered by the user | ||
|
||
<img src="https://user-images.githubusercontent.com/71232427/192485811-06481f2a-ec24-44f9-8435-c3277687ace6.jpg" width="300" height="500" > | <img src="https://user-images.githubusercontent.com/71232427/192486640-c63c9605-a1cf-43c1-a890-9b4fe403ea27.jpg" width="300" height="500" > | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
plugins { | ||
id 'com.android.application' | ||
} | ||
|
||
android { | ||
compileSdk 31 | ||
|
||
defaultConfig { | ||
applicationId "com.example.gproduitfront" | ||
minSdk 21 | ||
targetSdk 31 | ||
versionCode 1 | ||
versionName "1.0" | ||
|
||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
buildFeatures { | ||
viewBinding true | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation 'com.android.support:appcompat-v7:28.0.0' | ||
implementation 'com.android.support.constraint:constraint-layout:2.0.4' | ||
implementation 'com.android.support:design:28.0.0' | ||
implementation 'android.arch.navigation:navigation-fragment:1.0.0' | ||
implementation 'android.arch.navigation:navigation-ui:1.0.0' | ||
testImplementation 'junit:junit:4.+' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.2' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' | ||
|
||
//noinspection GradleCompatible | ||
implementation "com.android.support:cardview-v7:26.1.0" | ||
//noinspection GradleCompatible | ||
implementation 'com.android.support:recyclerview-v7:26.1.0' | ||
implementation 'com.squareup.picasso:picasso:2.71828' | ||
|
||
implementation 'com.squareup.retrofit2:retrofit:2.9.0' | ||
implementation 'com.squareup.retrofit2:converter-gson:2.7.2' | ||
implementation 'com.squareup.okhttp3:okhttp:3.6.0' | ||
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0' | ||
implementation 'com.squareup.okhttp3:logging-interceptor:3.0.1' | ||
implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1' | ||
//implementation 'com.google.android.material:material:1.4.0' | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,17 @@ | ||
plugins { | ||
id 'com.android.application' | ||
} | ||
|
||
android { | ||
compileSdk 31 | ||
|
||
defaultConfig { | ||
applicationId "com.example.gproduitfront" | ||
minSdk 21 | ||
targetSdk 31 | ||
versionCode 1 | ||
versionName "1.0" | ||
|
||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
// 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:7.0.4" | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
buildFeatures { | ||
viewBinding true | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation 'com.android.support:appcompat-v7:28.0.0' | ||
implementation 'com.android.support.constraint:constraint-layout:2.0.4' | ||
implementation 'com.android.support:design:28.0.0' | ||
implementation 'android.arch.navigation:navigation-fragment:1.0.0' | ||
implementation 'android.arch.navigation:navigation-ui:1.0.0' | ||
testImplementation 'junit:junit:4.+' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.2' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' | ||
|
||
//noinspection GradleCompatible | ||
implementation "com.android.support:cardview-v7:26.1.0" | ||
//noinspection GradleCompatible | ||
implementation 'com.android.support:recyclerview-v7:26.1.0' | ||
implementation 'com.squareup.picasso:picasso:2.71828' | ||
|
||
implementation 'com.squareup.retrofit2:retrofit:2.9.0' | ||
implementation 'com.squareup.retrofit2:converter-gson:2.7.2' | ||
implementation 'com.squareup.okhttp3:okhttp:3.6.0' | ||
implementation 'com.jakewharton.picasso:picasso2-okhttp3-downloader:1.1.0' | ||
implementation 'com.squareup.okhttp3:logging-interceptor:3.0.1' | ||
implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1' | ||
//implementation 'com.google.android.material:material:1.4.0' | ||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} |