Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
akinpelud
/
DissertationAPP
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Projects
Security
Insights
Files
main
Dissertation
PowerOf10
.idea
app
gradle
rsspage
.gitignore
build.gradle
gradle.properties
gradlew
gradlew.bat
settings.gradle
.gitattributes
README.md
Breadcrumbs
DissertationAPP
/
PowerOf10
/
build.gradle
Blame
Blame
Latest commit
History
History
24 lines (22 loc) · 688 Bytes
Breadcrumbs
DissertationAPP
/
PowerOf10
/
build.gradle
Top
File metadata and controls
Code
Blame
24 lines (22 loc) · 688 Bytes
Raw
buildscript { ext.kotlin_version = '1.8.10' ext { compose_version = '1.4.2' navigationVersion = '2.5.3' } repositories { mavenCentral() maven { url 'https://jitpack.io' } } dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } }// Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id 'com.android.application' version '7.4.2' apply false id 'com.android.library' version '7.4.2' apply false id 'org.jetbrains.kotlin.android' version '1.6.21' apply false } task clean(type: Delete) { delete rootProject.buildDir }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
You can’t perform that action at this time.