-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from nickw409/mobile-dev-experimental
Mobile dev experimental
- Loading branch information
Showing
17 changed files
with
377 additions
and
265 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
-keep class org.tensorflow.** { *; } | ||
-keep class org.tensorflow.lite.** { *; } | ||
-keep class org.tensorflow.lite.gpu.** { *; } | ||
# Please add these rules to your existing keep rules in order to suppress warnings. | ||
# This is generated automatically by the Android Gradle plugin. | ||
-dontwarn org.tensorflow.lite.gpu.GpuDelegateFactory$Options |
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
org.gradle.jvmargs=-Xmx1536M | ||
android.useAndroidX=true | ||
android.enableJetifier=true | ||
android.defaults.buildfeatures.buildconfig=true | ||
android.nonTransitiveRClass=false | ||
android.nonFinalResIds=false |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import 'package:flutter/material.dart'; | ||
|
||
class AboutCraft extends StatelessWidget { | ||
const AboutCraft({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return Scaffold( | ||
appBar: AppBar( | ||
toolbarHeight: 80, | ||
title: const Padding( | ||
padding: EdgeInsets.symmetric(horizontal: 8.0), | ||
child: Text( | ||
'About', | ||
style: TextStyle( | ||
fontFamily: 'Uber', fontSize: 60, fontWeight: FontWeight.w700), | ||
), | ||
), | ||
), | ||
body: SingleChildScrollView( | ||
child: Padding( | ||
padding: const EdgeInsets.all(16), | ||
child: Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
const SizedBox(height: 16), | ||
const Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
Text( | ||
"The goal of CRAFT is to increase the consistency of classification streamline the process of classifying Tusayan White Ware pottery shards by archeologists, use use cutting edge ConvNeXT model for imagge classification to ensure consistency and accuracy for TWW classifications.", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 18, | ||
), | ||
), | ||
SizedBox(height: 16), | ||
Text( | ||
'Project Sponsor', | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 25, | ||
fontWeight: FontWeight.w700, | ||
), | ||
), | ||
SizedBox(height: 8), | ||
Text( | ||
" Dr. Leszek Pawlowicz ", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 18, | ||
), | ||
), | ||
Text( | ||
" Leszek.Pawlowicz@nau.edu", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 15, | ||
), | ||
), | ||
SizedBox( | ||
height: 16, | ||
), | ||
Text( | ||
'Project Developers', | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 25, | ||
fontWeight: FontWeight.w700, | ||
), | ||
), | ||
SizedBox(height: 8), | ||
Text( | ||
" Kimberly Allison", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 18, | ||
), | ||
), | ||
Text( | ||
" Aadarsha Bastola", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 18, | ||
), | ||
), | ||
Text( | ||
" Alan Hakala", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 18, | ||
), | ||
), | ||
Text( | ||
" Nick Wiley", | ||
style: TextStyle( | ||
fontFamily: 'Uber', | ||
fontSize: 18, | ||
), | ||
), | ||
], | ||
), | ||
], | ||
), | ||
), | ||
), | ||
); | ||
} | ||
} |
This file contains 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
Oops, something went wrong.